* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #2c2f33;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: #23272a;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2c2f33;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.open-app-btn {
    background: linear-gradient(135deg, #5865f2, #7289da);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.open-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.open-app-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.open-app-btn:hover:before {
    left: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 300px);
    padding: 40px 0;
}

.hero-content {
    max-width: 520px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #b9bbbe;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-description p {
    margin-bottom: 16px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-description .welcome-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-description .availability-text {
    font-size: 1rem;
    color: #7289da;
    font-weight: 500;
    margin-top: 20px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 28px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.download-btn.primary {
    background: #5865f2;
    color: #ffffff;
}

.download-btn.primary:hover {
    background: #4752c4;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.download-btn.secondary {
    background: transparent;
    color: #5865f2;
    border: 2px solid #5865f2;
}

.download-btn.secondary:hover {
    background: #5865f2;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

/* Downloads Section */
.downloads {
    padding: 60px 0;
    background: #23272a;
    margin-top: 20px;
}

.downloads-header {
    text-align: center;
    margin-bottom: 48px;
}

.downloads-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.downloads-header p {
    font-size: 1.125rem;
    color: #b9bbbe;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.download-card {
    background: #36393f;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #40444b;
    position: relative;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: #5865f2;
}

.download-card.available {
    border-color: #43b581;
}

.download-card.available:hover {
    border-color: #43b581;
    box-shadow: 0 12px 32px rgba(67, 181, 129, 0.2);
}

.download-icon {
    margin-bottom: 20px;
    color: #72767d;
}

.download-card.available .download-icon {
    color: #43b581;
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.platform-desc {
    color: #b9bbbe;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.download-status {
    margin-bottom: 24px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: rgba(67, 181, 129, 0.2);
    color: #43b581;
    border: 1px solid rgba(67, 181, 129, 0.3);
}

.status-badge.coming-soon {
    background: rgba(255, 163, 71, 0.2);
    color: #ffa347;
    border: 1px solid rgba(255, 163, 71, 0.3);
}

.download-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    font-family: inherit;
    width: 100%;
    justify-content: center;
}

.download-card-btn.primary {
    background: #43b581;
    color: #ffffff;
}

.download-card-btn.primary:hover {
    background: #3ca374;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(67, 181, 129, 0.3);
}

.download-card-btn.secondary {
    background: transparent;
    color: #72767d;
    border: 2px solid #40444b;
}

.download-card-btn.secondary:hover {
    background: #40444b;
    color: #ffffff;
    border-color: #72767d;
}

/* Hero Image / Logo Showcase */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.large-logo {
    filter: drop-shadow(0 8px 32px rgba(88, 101, 242, 0.3));
    animation: float 6s ease-in-out infinite;
}

.brand-text {
    text-align: center;
}

.brand-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.brand-text p {
    color: #b9bbbe;
    font-size: 1rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Custom Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: #36393f;
    border-radius: 12px;
    width: 90%;
    max-width: 480px;
    min-height: 200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid #40444b;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0 24px;
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #72767d;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #40444b;
    color: #ffffff;
}

.modal-body {
    padding: 24px;
    text-align: center;
}

.modal-body p {
    color: #dcddde;
    font-size: 1.125rem;
    margin: 0 0 12px 0;
}

.modal-subtitle {
    color: #b9bbbe !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

.modal-footer {
    padding: 0 24px 24px 24px;
    text-align: center;
}

.modal-btn {
    background: #5865f2;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.modal-btn:hover {
    background: #4752c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Footer */
.footer {
    background: #23272a;
    border-top: 1px solid #2c2f33;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    text-align: center;
}

.footer p {
    color: #72767d;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        gap: 30px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .large-logo svg {
        width: 100px;
        height: 100px;
    }
    
    .downloads {
        padding: 40px 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .large-logo svg {
        width: 80px;
        height: 80px;
    }
    
    .brand-text h2 {
        font-size: 1.5rem;
    }
    
    .navbar {
        padding: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .downloads {
        padding: 40px 0;
        margin-top: 10px;
    }
    
    .downloads-header h2 {
        font-size: 2rem;
    }
    
    .downloads-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 16px;
    }
    
    .footer {
        margin-top: 30px;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .large-logo svg {
        width: 60px;
        height: 60px;
    }
    
    .brand-text h2 {
        font-size: 1.25rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 200px;
        justify-content: center;
    }
    
    .open-app-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .downloads-header h2 {
        font-size: 1.75rem;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .download-card {
        padding: 24px 16px;
    }
}
