:root {
    --primary-color: #2ebc5c; /* Updated to match green logo */
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-gradient: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-gradient);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: none;
    position: absolute;
    left: 200px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
}

/* Main Content */
section {
    padding: 100px 0;
    text-align: center;
}

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 50px;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    z-index: 2;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 188, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 188, 92, 0.4);
}

.hero-image {
    margin-top: 60px;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.logo-container {
    position: relative;
    display: inline-block;
    animation: floating 6s ease-in-out infinite;
}

.main-logo-img {
    width: 300px;
    height: 300px;
    border-radius: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.logo-reflection {
    margin-top: 4px;
    transform: scaleY(-1);
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.logo-reflection img {
    width: 300px;
    height: 300px;
    border-radius: 60px;
}


@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* App Store Section */
.app-store h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #000;
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 200px;
}

.store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.store-btn .text {
    display: flex;
    flex-direction: column;
}

.store-btn span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.store-btn strong {
    font-size: 18px;
}

/* PC vs Mobile Logic */
@media (min-width: 992px) {
    .nav-links {
        display: block;
    }
    
    .menu-icon {
        display: none;
    }
    
    .hero-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .hero-text {
        flex: 1;
        padding-right: 50px;
    }
    
    .hero-text .subtitle {
        margin: 0 0 40px 0;
    }
    
    h1 {
        font-size: 72px;
    }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .pc-only {
        display: none !important;
    }
    
    .hero {
        padding-top: 0px;
        min-height: auto;
    }

    h1 {
        font-size: 32px;
        padding: 0 10px;
    }
    
    .subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 16px;
    }

    .main-logo-img, .logo-reflection img {
        width: 100%;
        max-width: 200px;
        height: auto;
        border-radius: 40px;
    }

    .hero-image {
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}


/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: white;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 16px;
}

.info-item.language {
    cursor: pointer;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s;
}

.info-item.language:hover {
    background: #eef1f4;
}

.info-item a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 8px;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Footer section and final adjustments if needed */
