/*
Theme Name: domendomen.com
Author: TrueWhitePages
Author URI: https://truewhitepages.com
Version: 4.2.0
*/
/* domendomen - Modern Social Casino Platform */

:root {
    --color-background: #0d0d0d;
    --color-surface: #1a1a1a;
    --color-panel: #242424;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #d0d0d0;
    --color-text-muted: #999999;
    --color-accent: #14b8a6;
    --color-accent-dark: #0d9488;
    --color-accent-light: #2dd4bf;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;
    --color-border: rgba(20, 184, 166, 0.3);
    --color-border-light: rgba(255, 255, 255, 0.1);

    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(20, 184, 166, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --container-width: 1280px;
    --transition-speed: 0.3s;

    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style-position: inside;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 28px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--color-accent);
    color: #fff;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

/* Top Notice Bar */
.top-notice {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, #000 0%, var(--color-surface) 100%);
    border-bottom: 2px solid var(--color-border);
}

.badge {
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.badge-warning {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
}

.badge-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
}

.badge-neutral {
    background: linear-gradient(135deg, #404040 0%, #262626 100%);
    color: #e5e5e5;
}

.badge-success {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #fff;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 28px;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--color-accent);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-speed) ease;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 44px;
    height: 42px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.mobile-menu-toggle:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: var(--color-accent);
}

.hamburger-icon {
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    display: block;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-speed) ease;
}

.hamburger-icon::before {
    top: -7px;
}

.hamburger-icon::after {
    top: 7px;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
}

.cta-primary {
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        var(--color-accent-dark) 100%
    );
    color: #fff;
    border-color: var(--color-accent);
}

.cta-primary:hover {
    background: linear-gradient(
        135deg,
        var(--color-accent-light) 0%,
        var(--color-accent) 100%
    );
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-secondary {
    background: linear-gradient(
        135deg,
        rgba(20, 184, 166, 0.9) 0%,
        rgba(229, 90, 43, 0.9) 100%
    );
    color: #fff;
    padding: 11px 24px;
    font-size: 13px;
}

.cta-secondary:hover {
    background: linear-gradient(
        135deg,
        rgba(229, 90, 43, 0.9) 0%,
        rgba(20, 184, 166, 0.9) 100%
    );
    transform: translateY(-2px);
}

.cta-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-surface) 0%, #0d0d0d 100%);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 14px;
}

.cta-submit:hover {
    background: linear-gradient(
        135deg,
        var(--color-panel) 0%,
        var(--color-surface) 100%
    );
    transform: translateY(-2px);
}

.cta-cookie {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #000;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 12px;
}

.cta-cookie:hover {
    background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: var(--hero-image) center/cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 1600px 800px at 50% 20%,
        rgba(20, 184, 166, 0.08),
        transparent
    );
    z-index: 1;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        1600px 800px at 50% 20%,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.92)
    );
    opacity: 0.98;
}

.hero-inner {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-heading {
    margin: 0;
    font-size: 56px;
    font-weight: 900;
    color: var(--color-accent);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-description {
    max-width: 880px;
    margin: 20px auto 0;
    color: var(--color-text-primary);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
}

.section-divider {
    width: 500px;
    max-width: 80vw;
    height: 2px;
    margin: 40px auto;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-border),
        transparent
    );
}

/* Content Headings */
.content-heading {
    margin: 36px 0 16px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    margin: 0 0 24px;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.light-text {
    color: var(--color-accent-light);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.dark-text {
    color: #0f0f0f;
}

/* Info Cards */
.info-cards {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.info-card-item {
    padding: 20px 0 0;
    border-top: 3px solid var(--color-border);
    transition: all var(--transition-speed) ease;
}

.info-card-item:hover {
    border-top-color: var(--color-accent);
}

.card-title {
    color: var(--color-accent-light);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

.info-card-item p {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.platform-philosophy {
    margin-top: 50px;
}

/* Categories Section */
.categories-section {
    background: linear-gradient(180deg, #f7f7f7 0%, #ebebeb 100%);
    color: #0d0d0d;
    padding: 80px 0;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-accent),
        transparent
    );
    opacity: 0.6;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.category-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(20, 184, 166, 0.2);
}

.category-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 900;
    color: #0d0d0d;
}

.category-card p {
    margin: 0 0 16px;
    font-size: 14px;
    color: #1f1f1f;
    line-height: 1.7;
}

.muted-text {
    opacity: 0.85;
}

.category-stat {
    font-size: 13px;
    color: var(--color-accent-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Games Section */
.featured-games {
    position: relative;
    padding: 90px 0;
    background: var(--games-bg) center/cover no-repeat;
    overflow: hidden;
}

.featured-games::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 1400px 700px at 50% 50%,
        rgba(20, 184, 166, 0.06),
        transparent
    );
    z-index: 1;
}

.games-showcase {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    z-index: 2;
}

.game-card-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-speed) ease;
}

.game-card-featured:hover {
    transform: translateY(-10px);
}

.game-card-featured img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 16px 45px rgba(0, 0, 0, 0.6));
    border-radius: var(--radius-md);
    transition: all var(--transition-speed) ease;
}

.game-card-featured:hover img {
    filter: drop-shadow(0 20px 55px rgba(20, 184, 166, 0.5));
}

.game-info {
    text-align: center;
}

.game-title {
    color: var(--color-accent-light);
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.game-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0 0 16px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #f7f7f7 0%, #ebebeb 100%);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
    text-align: center;
}

.benefit-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(20, 184, 166, 0.15);
}

.benefit-icon {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-accent-dark);
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
}

.benefit-title {
    font-weight: 900;
    font-size: 17px;
    margin-bottom: 12px;
    color: #0d0d0d;
}

.benefit-text {
    font-size: 14px;
    color: #1f1f1f;
    opacity: 0.9;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--color-surface) 100%);
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-accent),
        transparent
    );
    opacity: 0.5;
}

.faq-container {
    text-align: center;
}

.faq-accordion {
    max-width: 900px;
    margin: 32px auto 0;
    text-align: left;
}

details {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(20, 184, 166, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 14px 0;
    transition: all var(--transition-speed) ease;
}

details:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(20, 184, 166, 0.3);
}

details[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(20, 184, 166, 0.4);
}

summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 15px;
    color: var(--color-text-primary);
    padding: 6px 0;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: '▶';
    margin-right: 12px;
    color: var(--color-accent);
    font-weight: 900;
    transition: transform var(--transition-speed) ease;
    display: inline-block;
}

details[open] summary::before {
    transform: rotate(90deg);
}

details p {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    padding-left: 28px;
}

.faq-link {
    margin-top: 24px;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 90px 0 110px;
    background: var(--contact-bg) center/cover no-repeat;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 1400px 700px at 50% 50%,
        rgba(20, 184, 166, 0.08),
        transparent
    );
    z-index: 1;
}

.contact-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-form-box {
    width: min(520px, 100%);
    margin: 32px auto 0;
    background: #fff;
    color: #000;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 32px 28px;
    text-align: left;
    border: 3px solid var(--color-border);
}

.contact-form-box label {
    display: block;
    font-size: 13px;
    margin: 16px 0 8px;
    color: #0d0d0d;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.contact-form-box input {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(0, 0, 0, 0.15);
    outline: none;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
    background: #fafafa;
    font-family: inherit;
}

.contact-form-box input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    background: #fff;
}

.contact-form-box input::placeholder {
    color: #999;
    font-size: 13px;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
    color: var(--color-text-primary);
    padding: 50px 0 0;
    border-top: 3px solid var(--color-border);
}

.footer-content {
    padding-bottom: 50px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    padding: 24px 0;
}

.footer-badges img {
    max-height: 50px;
    width: auto;
    transition: all var(--transition-speed) ease;
    filter: brightness(0.9);
}

.footer-badges img:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.footer-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-text-secondary);
}

.footer-text a {
    color: var(--color-accent);
    font-weight: 700;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 28px;
}

.footer-info-grid h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-accent-light);
}

.footer-info-grid p {
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
}

.footer-info-grid ul {
    margin: 14px 0 0 20px;
    padding: 0;
    line-height: 1.7;
}

.footer-info-grid li {
    margin: 8px 0;
    font-size: 14px;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid var(--color-border-light);
}

.footer-navigation a {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    transition: all var(--transition-speed) ease;
}

.footer-navigation a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #525252 0%, #3a3a3a 100%);
    padding: 16px 18px;
    border-top: 3px solid var(--color-border);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 14px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

/* Age Gate Modal */
.age-gate-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.age-gate-modal.active {
    display: block;
}

.age-gate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.age-gate-content {
    position: relative;
    max-width: 480px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, var(--color-surface) 0%, #0d0d0d 100%);
    color: var(--color-text-primary);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--color-border);
}

.age-gate-text {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 28px;
    color: var(--color-text-secondary);
}

.age-gate-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    margin-bottom: 32px;
    justify-content: center;
    font-weight: 700;
}

.age-gate-checkbox input {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.age-gate-actions .cta-button {
    min-width: 180px;
}

.cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0 70px;
    }

    .hero-heading {
        font-size: 46px;
    }

    .games-showcase {
        gap: 40px;
    }
}

@media (max-width: 820px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        flex: 1;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(13, 13, 13, 0.97);
        border: 2px solid var(--color-border);
        border-radius: var(--radius-lg);
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 14px;
        box-shadow: var(--shadow-lg);
        z-index: 600;
        list-style: none;
        margin: 0;
    }

    .nav-menu.open {
        display: flex !important;
    }

    .nav-menu a {
        padding: 12px;
        text-align: center;
    }

    .hero-heading {
        font-size: 38px;
    }

    .games-showcase {
        grid-template-columns: 1fr;
    }
}

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

    .hero-heading {
        font-size: 32px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .age-gate-content {
        margin: 24px;
        padding: 32px 28px;
    }
}

/* Selection Color */
::selection {
    background: var(--color-accent);
    color: #fff;
}

/* Focus Styles */
*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-message {
    animation: fadeIn 0.4s ease;
}
