html {
    scroll-behavior: smooth;
    background: radial-gradient(circle at top right, #0f172a, #06070c 60%);
    background-attachment: fixed;
    background-color: #06070c;
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(circle at top right, #0f172a, #06070c 60%);
    background-attachment: fixed;
    background-color: #06070c;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* HEADER */
.top-header {
    padding: 25px 0;
    position: relative;
    z-index: 100;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text {
    font-size: 34px;
    letter-spacing: 4px;
    font-weight: 800;
    color: #7fdcff;
    text-shadow: 0 0 14px rgba(120, 200, 255, 0.45);
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInDown 1s ease forwards 0.2s;
    opacity: 0;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(120, 160, 255, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MAIN CARD */
.main-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: floatIn 1s ease forwards;
    max-width: 900px;
    margin: 60px auto;
    padding: 60px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.main-card h1 {
    text-align: center;
    width: 100%;
    font-size: 38px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease forwards 0.2s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.coming-soon {
    font-size: 14px;
    background: rgba(120, 200, 255, 0.1);
    color: #7fdcff;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(120, 200, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: middle;
}

.subtitle {
    text-align: center;
    width: 100%;
    color: #bfc5d2;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease forwards 0.4s;
    opacity: 0;
}

.intro-text {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease forwards 0.6s;
    opacity: 0;
}

.intro-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #dbe8ff;
    margin: 0 0 20px;
    text-align: center;
}

.intro-text p {
    color: #bfc5d2;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
    text-align: left;
}

.intro-text a {
    color: #7fdcff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.intro-text a:hover {
    color: #cbd5ff;
    text-decoration: underline;
}

.additional-content {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease forwards 0.8s;
    opacity: 0;
}

.additional-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #dbe8ff;
    margin: 0 0 20px;
    text-align: center;
}

.additional-content p {
    color: #bfc5d2;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
    text-align: left;
}

.additional-content a {
    color: #7fdcff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.additional-content a:hover {
    color: #cbd5ff;
    text-decoration: underline;
}

.social-sharing {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    backdrop-filter: blur(14px);
}

.social-sharing h3 {
    font-size: 22px;
    font-weight: 600;
    color: #dbe8ff;
    margin: 0 0 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
    flex: 1 1 auto;
}

.social-btn.twitter {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.3);
}

.social-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
    transform: translateY(-2px);
}

.social-btn.facebook {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.3);
}

.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
}

.social-btn.linkedin {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.3);
}

.social-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    transform: translateY(-2px);
}

.footer-links {
    margin-top: 15px;
    font-size: 13px;
}

.footer-links a {
    color: #7fdcff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #cbd5ff;
    text-decoration: underline;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease forwards 0.6s;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    background-size: 200% auto;
}

.appstore {
    background: linear-gradient(135deg, #6a5cff, #4cc3ff);
    box-shadow: 0 0 25px rgba(90, 140, 255, 0.35);
}

.playstore {
    background: linear-gradient(135deg, #5b7cff, #3fd1ff);
    box-shadow: 0 0 25px rgba(70, 180, 255, 0.35);
}

.btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 45px rgba(120, 160, 255, 0.8);
    background-position: right center;
}

/* FEATURE CARDS */
.features {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    width: 100%;
}

.features h2 {
    grid-column: 1 / -1;
    font-size: 32px;
    font-weight: 700;
    color: #dbe8ff;
    margin: 0 0 30px;
    text-align: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px 22px;
    backdrop-filter: blur(14px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #dbe8ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #bfc5d2;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 50px rgba(120, 160, 255, 0.5), 0 0 30px rgba(120, 160, 255, 0.3);
    border-color: rgba(120, 200, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature-card.fade-in {
    animation: fadeUp 1.1s ease forwards;
}

.feature-card.fade-in:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-card.fade-in:nth-child(2) {
    animation-delay: 0.7s;
}

.feature-card.fade-in:nth-child(3) {
    animation-delay: 0.8s;
}

.feature-card.fade-in:nth-child(4) {
    animation-delay: 0.9s;
}

.feature-card.fade-in:nth-child(5) {
    animation-delay: 1.0s;
}

.feature-card.fade-in:nth-child(6) {
    animation-delay: 1.1s;
}

/* FOOTER */
.footer {
    text-align: center;
    margin: 80px 0 40px;
    color: #888;
    margin-top: auto;
}

.footer a {
    margin: 0 15px;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    color: #cbd5ff;
}

/* LEGAL OUTLINE BUTTONS */
.legal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.legal-btn {
    padding: 12px 26px;
    border-radius: 12px;
    border: 1px solid rgba(140, 180, 255, 0.35);
    color: #cbd5ff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.legal-btn:hover {
    background: rgba(120, 160, 255, 0.08);
    border-color: rgba(160, 200, 255, 0.8);
    box-shadow: 0 0 20px rgba(120, 160, 255, 0.3);
}

/* LEGAL PAGES STYLING */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container header {
    text-align: center;
    margin-bottom: 3rem;
    animation: floatIn 0.8s ease forwards;
}

.container header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #7fdcff;
    text-shadow: 0 0 14px rgba(120, 200, 255, 0.45);
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.container header p {
    color: #bfc5d2;
    font-size: 15px;
    margin: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #cbd5ff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-link:hover {
    background: rgba(120, 160, 255, 0.1);
    border-color: rgba(160, 200, 255, 0.4);
    transform: translateX(-4px);
    box-shadow: 0 0 20px rgba(120, 160, 255, 0.2);
}

.legal-content {
    flex: 1;
    animation: floatIn 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.legal-content section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 32px 28px;
    margin-bottom: 24px;
    backdrop-filter: blur(14px);
    transition: all 0.3s ease;
}

.legal-content section:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(120, 160, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

.separator {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    margin: 32px 0;
    letter-spacing: 4px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #dbe8ff;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
}

.legal-content p {
    color: #bfc5d2;
    font-size: 15.5px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 0;
    color: #bfc5d2;
    list-style: none;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #bfc5d2;
}

.legal-content a {
    color: #7fdcff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #cbd5ff;
    text-decoration: underline;
}

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

.container footer p {
    margin: 8px 0;
    color: #aaa;
    font-size: 14px;
}

.container footer a {
    color: #7fdcff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.container footer a:hover {
    color: #cbd5ff;
    text-shadow: 0 0 8px rgba(120, 200, 255, 0.5);
}

@media (max-width: 768px) {
    .main-card {
        margin: 30px 15px;
        padding: 40px 20px;
    }

    .main-card h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
    }

    .buttons {
        flex-direction: column;
    }

    .container {
        padding: 30px 15px;
    }

    .container header h1 {
        font-size: 32px;
    }

    .legal-content section {
        padding: 24px 20px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }

    .intro-text {
        padding: 0 15px;
        margin: 30px auto;
    }

    .intro-text h2 {
        font-size: 24px;
    }

    .intro-text p {
        font-size: 15px;
    }

    .features h2 {
        font-size: 26px;
    }

    .additional-content {
        margin: 40px auto;
        padding: 0 15px;
    }

    .additional-content h2 {
        font-size: 24px;
    }

    .additional-content p {
        font-size: 15px;
    }

    .social-sharing {
        margin: 30px 15px;
        padding: 25px 20px;
    }

    .social-sharing h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .social-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }

    .social-btn {
        width: 100%;
        padding: 12px 8px;
        font-size: 13px;
        min-width: auto;
        flex: none;
    }
}

/* ===== Premium Hover Animations ===== */

/* App Store & Google Play Buttons */
.btn.store-button {
    transition: all 0.35s ease;
}

.btn.store-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(120, 160, 255, 0.35);
}

/* Feature Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(18px);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 50px rgba(120, 160, 255, 0.5), 0 0 30px rgba(120, 160, 255, 0.3), 0 5px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 200, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
}

/* Legal Buttons */
.legal-btn {
    transition: all 0.35s ease;
}

.legal-btn:hover {
    transform: translateY(-3px);
    background: rgba(120, 160, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(120, 160, 255, 0.5);
}

/* Smooth entrance animation */
.fade-in {
    animation: fadeUp 1.1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== Support Form Styles ===== */
.support-form {
    margin-top: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #dbe8ff;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    font-family: 'Inter', system-ui, sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(120, 200, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(120, 160, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #6a5cff, #4cc3ff);
    box-shadow: 0 0 25px rgba(90, 140, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: 0.3px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 35px rgba(120, 160, 255, 0.5);
    background: linear-gradient(135deg, #7a6cff, #5cd3ff);
}

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

.form-status {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
    animation: fadeInUp 0.4s ease forwards;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 32px;
    }
}