* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #05181A;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 40px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-titled {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.1));
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.download-section {
    text-align: center;
}

.download-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.windows-btn:hover {
    border-color: #0078d4;
    box-shadow: 0 8px 32px rgba(0, 120, 212, 0.3);
}

.android-btn:hover {
    border-color: #34d399;
    box-shadow: 0 8px 32px rgba(52, 211, 153, 0.3);
}

.ios-btn:hover {
    border-color: #60a5fa;
    box-shadow: 0 8px 32px rgba(96, 165, 250, 0.3);
}

.download-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-platform {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 400;
}

.features {
    margin-top: 40px;
}

.platforms {
    margin-top: 60px;
    text-align: center;
}

.platforms-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #ffffff;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-4px);
}

.platform-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-logo svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.platform-logo.tiktok {
    background: linear-gradient(135deg, #ff0050 0%, #000000 100%);
}

.platform-logo.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.platform-logo.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.platform-logo.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.platform-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Legal Pages Styles */
.legal-page {
    justify-content: flex-start;
    padding-top: 40px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 24px 0 12px 0;
}

.legal-section p {
    color: #e2e8f0;
    margin-bottom: 16px;
}

.legal-section ul {
    color: #e2e8f0;
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Welcome Page Styles */
.welcome-page {
    justify-content: center;
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-message {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 48px;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.step-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 600;
    font-size: 1.125rem;
    color: #ffffff;
}

.step-item h3 {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.download-section {
    margin-bottom: 48px;
}

.download-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 24px;
}

.support-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
}

.support-section h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.support-section p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.support-link {
    display: inline-block;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

/* Account Deletion Page Styles */
.step-by-step {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 24px 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step .step-number {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 8px;
    color: #ffffff;
}

.step-content p {
    color: #e2e8f0;
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.info-item h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.info-item p {
    color: #e2e8f0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.warning-section {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 24px;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 2rem;
    color: #fbbf24;
}

.warning-section h2 {
    color: #fbbf24;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.warning-content h3 {
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 8px;
}

.warning-content h3:first-child {
    margin-top: 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.contact-item {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-item strong {
    color: #4ade80;
}

.contact-item a {
    color: #4ade80;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.help-text {
    font-style: italic;
    color: #94a3b8;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .logo-titled {
        height: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
    
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .platform-logos {
        gap: 24px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-titled {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .download-btn {
        padding: 16px 24px;
        gap: 12px;
    }
    
    .download-icon {
        width: 28px;
        height: 28px;
    }
    
    .platform-logos {
        gap: 16px;
    }
    
    .platform-logo {
        width: 50px;
        height: 50px;
    }
    
    .platform-logo svg {
        width: 28px;
        height: 28px;
    }
    
    .legal-title {
        font-size: 1.75rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .support-section {
        padding: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}