@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --background: #0F1115;
    --surface: #161A20;
    --surface-card: rgba(22, 26, 32, 0.7);
    --surface-hover: #1E232B;
    --primary: #29FF7A;
    --primary-hover: #1de064;
    --primary-glow: rgba(41, 255, 122, 0.25);
    --primary-glow-heavy: rgba(41, 255, 122, 0.5);
    --text: #FFFFFF;
    --text-muted: #A1A1AA;
    --border: #272A30;
    --border-light: rgba(255, 255, 255, 0.08);
    --success: #48BB78;
    --danger: #EF4444;
    --font: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Background Gradients & Glows */
.bg-glow-container {
    position: relative;
    width: 100%;
}

.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(41, 255, 122, 0.05) 0%, rgba(15, 17, 21, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(41, 255, 122, 0.04) 0%, rgba(15, 17, 21, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

/* Header / Navbar */
header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(15, 17, 21, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.brand-logo:hover .brand-logo-text {
    text-shadow: 0 0 15px var(--primary-glow-heavy);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(41, 255, 122, 0.1);
    border: 1px solid rgba(41, 255, 122, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 0 8px rgba(41, 255, 122, 0.2);
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title span {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Coming Soon Buttons Group */
.buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.coming-soon-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    position: relative;
    cursor: default;
    min-width: 220px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.coming-soon-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    transition: var(--transition);
}

.coming-soon-btn:hover {
    background: rgba(22, 26, 32, 0.95);
    border-color: rgba(41, 255, 122, 0.4);
    box-shadow: 0 10px 25px rgba(41, 255, 122, 0.15);
    transform: translateY(-2px);
}

.coming-soon-btn:hover::before {
    background: linear-gradient(135deg, var(--primary), transparent);
}

.btn-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--text-muted);
    transition: var(--transition);
}

.coming-soon-btn:hover .btn-icon svg {
    fill: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

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

.btn-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.btn-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.btn-coming-soon {
    font-size: 10px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(41, 255, 122, 0.08) 0%, rgba(15, 17, 21, 0) 70%);
    z-index: -1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.hero-img:hover {
    border-color: rgba(41, 255, 122, 0.25);
    box-shadow: 0 20px 50px rgba(41, 255, 122, 0.1);
}

/* Features Section */
.section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
    background: var(--surface-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(41, 255, 122, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(41, 255, 122, 0.15);
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #000000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Perfect For Section */
.perfect-for-bg {
    background: linear-gradient(180deg, var(--background) 0%, rgba(22, 26, 32, 0.4) 50%, var(--background) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tag-item {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
    box-shadow: var(--shadow-sm);
}

.tag-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-glow);
    background: rgba(41, 255, 122, 0.05);
}

/* Legal / Info Pages Template */
.legal-container {
    max-width: 800px;
    width: 100%;
    background: var(--surface-card);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin: 40px auto;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -1px;
    display: inline-block;
    text-shadow: 0 0 15px var(--primary-glow);
}

.legal-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.legal-body h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.legal-body h3 {
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.legal-body p {
    margin-bottom: 20px;
    color: #D1D5DB;
    font-size: 16px;
}

.legal-body ul {
    margin-bottom: 20px;
    padding-left: 24px;
    color: #D1D5DB;
}

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

.legal-body strong {
    color: var(--text);
}

.legal-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    transition: var(--transition);
}

.legal-body a:hover {
    opacity: 0.8;
    border-bottom-style: solid;
}

.callout-box {
    background: rgba(41, 255, 122, 0.03);
    border-left: 4px solid var(--primary);
    padding: 24px;
    margin: 30px 0;
    border-radius: 0 16px 16px 0;
    border-top: 1px solid rgba(41, 255, 122, 0.1);
    border-right: 1px solid rgba(41, 255, 122, 0.1);
    border-bottom: 1px solid rgba(41, 255, 122, 0.1);
}

.callout-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--primary);
}

/* Account Deletion Form */
.form-card {
    max-width: 500px;
    margin: 40px auto;
}

.form-group {
    text-align: left;
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: #000000;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow-heavy);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.success-message {
    display: none;
    color: var(--success);
    font-weight: 600;
    margin-top: 24px;
    background: rgba(72, 187, 120, 0.08);
    border: 1px solid rgba(72, 187, 120, 0.2);
    padding: 24px;
    border-radius: 16px;
    line-height: 1.5;
}

.back-link-wrapper {
    margin-top: 30px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px 0;
    background-color: rgba(15, 17, 21, 0.95);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-links-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--primary);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 44px;
    }

    .buttons-group {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .header-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 0;
    }

    .legal-container {
        padding: 40px 24px;
        margin: 20px auto;
    }

    .legal-title {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links-col {
        align-items: flex-start;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
