:root {
    --primary: #ff85a2;
    --primary-dark: #ff4d6d;
    --bg-light: #fff5f6;
    --bg-accent: #f9f0f2;
    --text-main: #2d3135;
    --text-dim: #6c757d;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-light);
    background-image: 
        url('assets/Bunny.png'), 
        url('assets/Penguin.png');
    background-position: 0 0, 75px 75px;
    background-size: 150px 150px;
    background-repeat: repeat;
    background-blend-mode: overlay;
    color: var(--text-main);
}

h1, h2, h3, .navbar-brand {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
}

/* Navbar Customization */
.navbar {
    background: rgba(255, 245, 246, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.max-width-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #ff85a2, #ff4d6d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 32px;
    width: 32px;
    -webkit-text-fill-color: initial;
}

.version-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    background: var(--bg-accent);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    margin-left: 0.5rem;
    -webkit-text-fill-color: initial;
}

.nav-link {
    color: var(--text-dim) !important;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.lang-switch {
    font-size: 0.85rem !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 6px !important;
    background: var(--bg-accent) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 245, 246, 0.75), rgba(255, 245, 246, 0.75)), url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero h1 {
    letter-spacing: -2px;
    color: var(--primary-dark);
}

.subtitle {
    color: #4a4d50;
    font-weight: 400;
    max-width: 650px;
}

/* Buttons */
.btn-main {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ff3366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-main:hover {
    transform: translateY(-3px);
    color: white;
}

.btn-primary {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #ff3366;
    color: white !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #e60040;
}

/* Cards */
.download-card, .connect-card {
    background: white;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    transition: var(--transition);
}

.download-card:hover:not(.gray-out), .connect-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

.platform-icon {
    font-size: 3.5rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text-main);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-download:hover {
    background: var(--primary-dark);
    color: white;
}

.gray-out {
    opacity: 0.6;
    background: var(--bg-accent);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dim);
    border-radius: 50px;
    font-weight: 600;
}

/* Highlights */
.highlights-image img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.highlights-image img:hover {
    transform: scale(1.05);
}

.help-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.help-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 245, 246, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-main);
    font-size: 40px;
    cursor: pointer;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}
