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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --primary-color: #000;
    --secondary-color: #333;
    --accent-color: #666;
    --light-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --text-light: #999;
    --white: #ffffff;
    --success-color: #4CAF50;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-secondary);
    background: var(--white);
    color: var(--primary-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

/* Logo Styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Hero Image */
.hero-image {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-dominos {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.hero-dominos:hover {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.15));
}

/* Domino Title Visual */
.domino-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
}

.domino-letter {
    display: flex;
    gap: 6px;
    margin: 0 6px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.domino-letter:nth-child(1) { animation-delay: 0.1s; }
.domino-letter:nth-child(2) { animation-delay: 0.2s; }
.domino-letter:nth-child(3) { animation-delay: 0.3s; }
.domino-letter:nth-child(4) { animation-delay: 0.4s; }
.domino-letter:nth-child(5) { animation-delay: 0.5s; }
.domino-letter:nth-child(6) { animation-delay: 0.6s; }
.domino-letter:nth-child(7) { animation-delay: 0.7s; }
.domino-letter:nth-child(8) { animation-delay: 0.8s; }
.domino-letter:nth-child(9) { animation-delay: 0.9s; }

.word-spacer {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 10px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.domino-tile {
    width: 48px;
    height: 96px;
    background: linear-gradient(to bottom right, rgb(39, 39, 39), rgb(17, 17, 17));
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    position: relative;
    box-shadow: inset 0.1em 0.1em 0.2em rgba(255, 255, 255, 0.1),
                inset -0.1em -0.1em 0.2em rgba(0, 0, 0, 0.3),
                0.2em 0.2em 0.4em rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.domino-tile:hover {
    transform: translateY(-4px) rotate(2deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: #ff6b6b;
}

.domino-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.domino-half span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: inset 0.1em 0.1em 0.2em rgba(255, 255, 255, 0.3),
                inset -0.1em -0.1em 0.2em rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.domino-half span.active {
    opacity: 1;
    transform: scale(1);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 100%);
    box-shadow: 0 0 0.3em rgba(255, 255, 255, 0.5),
                inset 0.1em 0.1em 0.2em rgba(255, 255, 255, 0.4),
                inset -0.1em -0.1em 0.2em rgba(0, 0, 0, 0.1);
}

.domino-half {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    width: 30px;
    height: 30px;
    padding: 3px;
}

/* Hero Title Styles */
.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
}

.hero-text {
    color: var(--primary-color);
    display: inline-block;
    margin: 0 8px;
}

.hero-highlight {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin: 0 8px;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

.hero-accent {
    color: var(--accent-color);
    display: inline-block;
    margin: 0 8px;
    position: relative;
}

.hero-accent::before {
    content: '🎯';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6em;
    animation: bounce 2s ease-in-out infinite;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-secondary);
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}


.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #333;
    padding: 16px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 16px;
    animation: rocket 2s ease-in-out infinite;
}

/* Floating Elements */
.floating-domino {
    position: absolute;
    font-size: 24px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.domino-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.domino-2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.domino-3 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.domino-4 {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

.domino-5 {
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGlow {
    from {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-60%);
    }
    60% {
        transform: translateY(-45%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rocket {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Letter P - Domino 6-5 (6 pips top, 5 pips bottom) */
.letter-p .part-top span:nth-child(1),
.letter-p .part-top span:nth-child(3),
.letter-p .part-top span:nth-child(4),
.letter-p .part-top span:nth-child(6),
.letter-p .part-top span:nth-child(7),
.letter-p .part-top span:nth-child(9) { opacity: 1; transform: scale(1); }

.letter-p .part-bottom span:nth-child(1),
.letter-p .part-bottom span:nth-child(3),
.letter-p .part-bottom span:nth-child(5),
.letter-p .part-bottom span:nth-child(7),
.letter-p .part-bottom span:nth-child(9) { opacity: 1; transform: scale(1); }

/* Letter I - Domino 1-1 (1 pip top, 1 pip bottom) */
.letter-i .part-top span:nth-child(5) { opacity: 1; transform: scale(1); }
.letter-i .part-bottom span:nth-child(5) { opacity: 1; transform: scale(1); }

/* Letter P (second) - Domino 6-5 (same as first P) */
.letter-p2 .part-top span:nth-child(1),
.letter-p2 .part-top span:nth-child(3),
.letter-p2 .part-top span:nth-child(4),
.letter-p2 .part-top span:nth-child(6),
.letter-p2 .part-top span:nth-child(7),
.letter-p2 .part-top span:nth-child(9) { opacity: 1; transform: scale(1); }

.letter-p2 .part-bottom span:nth-child(1),
.letter-p2 .part-bottom span:nth-child(3),
.letter-p2 .part-bottom span:nth-child(5),
.letter-p2 .part-bottom span:nth-child(7),
.letter-p2 .part-bottom span:nth-child(9) { opacity: 1; transform: scale(1); }

/* Letter S - Domino 6-6 (6 pips top, 6 pips bottom) */
.letter-s .part-top span:nth-child(1),
.letter-s .part-top span:nth-child(3),
.letter-s .part-top span:nth-child(4),
.letter-s .part-top span:nth-child(6),
.letter-s .part-top span:nth-child(7),
.letter-s .part-top span:nth-child(9) { opacity: 1; transform: scale(1); }

.letter-s .part-bottom span:nth-child(1),
.letter-s .part-bottom span:nth-child(3),
.letter-s .part-bottom span:nth-child(4),
.letter-s .part-bottom span:nth-child(6),
.letter-s .part-bottom span:nth-child(7),
.letter-s .part-bottom span:nth-child(9) { opacity: 1; transform: scale(1); }

/* Letter G - Domino 4-4 (4 pips top, 4 pips bottom) */
.letter-g .part-top span:nth-child(1),
.letter-g .part-top span:nth-child(3),
.letter-g .part-top span:nth-child(7),
.letter-g .part-top span:nth-child(9) { opacity: 1; transform: scale(1); }

.letter-g .part-bottom span:nth-child(1),
.letter-g .part-bottom span:nth-child(3),
.letter-g .part-bottom span:nth-child(7),
.letter-g .part-bottom span:nth-child(9) { opacity: 1; transform: scale(1); }

/* Letter A - Domino 3-3 (3 pips top, 3 pips bottom) */
.letter-a .part-top span:nth-child(1),
.letter-a .part-top span:nth-child(5),
.letter-a .part-top span:nth-child(9) { opacity: 1; transform: scale(1); }

.letter-a .part-bottom span:nth-child(1),
.letter-a .part-bottom span:nth-child(5),
.letter-a .part-bottom span:nth-child(9) { opacity: 1; transform: scale(1); }

/* Letter M - Domino 2-2 (2 pips top, 2 pips bottom) */
.letter-m .part-top span:nth-child(1),
.letter-m .part-top span:nth-child(9) { opacity: 1; transform: scale(1); }

.letter-m .part-bottom span:nth-child(1),
.letter-m .part-bottom span:nth-child(9) { opacity: 1; transform: scale(1); }

/* Letter E - Domino 0-0 (blank domino) */
.letter-e .part-top span,
.letter-e .part-bottom span { opacity: 0; transform: scale(0); }

.app-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: var(--primary-color);
}

.app-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Description Section */
.description-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.description-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    font-size: 16px;
    color: var(--accent-color);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.feature-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.feature-item.mobile-apps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 8px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.feature-item.mobile-apps:before {
    display: none;
}

.platform-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-content .platform-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-content .platform-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-content .platform-logo:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.badge-content .platform-logo.ios {
    animation: bounce 2s ease-in-out infinite;
}

.badge-content .platform-logo.android {
    animation: bounce 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.badge-content .platform-logo svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.badge-content .platform-logo span {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.mobile-text {
    font-weight: 600;
    font-size: 14px;
    margin-left: 12px;
}

/* Domino Preview */
.domino-preview {
    text-align: center;
}

.preview-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 40px;
    color: var(--primary-color);
}

.domino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
}

.domino {
    width: 80px;
    height: 160px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 2px solid var(--primary-color);
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.domino:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.domino-center {
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.domino-half {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    width: 50px;
    height: 50px;
}

.pip {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: auto;
    transition: all 0.2s ease;
}

/* Domino Face Patterns */
.domino-0 .pip { display: none; }

.domino-1 .pip:nth-child(5) { display: block; }
.domino-1 .pip:not(:nth-child(5)) { display: none; }

.domino-2 .pip:nth-child(1),
.domino-2 .pip:nth-child(9) { display: block; }
.domino-2 .pip:not(:nth-child(1)):not(:nth-child(9)) { display: none; }

.domino-3 .pip:nth-child(1),
.domino-3 .pip:nth-child(5),
.domino-3 .pip:nth-child(9) { display: block; }
.domino-3 .pip:not(:nth-child(1)):not(:nth-child(5)):not(:nth-child(9)) { display: none; }

.domino-4 .pip:nth-child(1),
.domino-4 .pip:nth-child(3),
.domino-4 .pip:nth-child(7),
.domino-4 .pip:nth-child(9) { display: block; }
.domino-4 .pip:not(:nth-child(1)):not(:nth-child(3)):not(:nth-child(7)):not(:nth-child(9)) { display: none; }

.domino-5 .pip:nth-child(1),
.domino-5 .pip:nth-child(3),
.domino-5 .pip:nth-child(5),
.domino-5 .pip:nth-child(7),
.domino-5 .pip:nth-child(9) { display: block; }
.domino-5 .pip:not(:nth-child(1)):not(:nth-child(3)):not(:nth-child(5)):not(:nth-child(7)):not(:nth-child(9)) { display: none; }

.domino-6 .pip:nth-child(1),
.domino-6 .pip:nth-child(3),
.domino-6 .pip:nth-child(4),
.domino-6 .pip:nth-child(6),
.domino-6 .pip:nth-child(7),
.domino-6 .pip:nth-child(9) { display: block; }
.domino-6 .pip:not(:nth-child(1)):not(:nth-child(3)):not(:nth-child(4)):not(:nth-child(6)):not(:nth-child(7)):not(:nth-child(9)) { display: none; }

/* Notify Section */
.notify-section {
    text-align: center;
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.notify-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 16px;
    color: var(--primary-color);
}

.notify-description {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.notify-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

#emailInput {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-secondary);
    transition: border-color 0.3s ease;
}

#emailInput:focus {
    outline: none;
    border-color: var(--primary-color);
}

.notify-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    white-space: nowrap;
}

.notify-button:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.notify-button:active {
    transform: translateY(0);
}

.notify-button.success {
    background: var(--success-color);
}

.privacy-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 16px;
}

/* Footer */
.footer {
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--accent-color);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--accent-color);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    background: var(--border-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domino {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.domino:nth-child(1) { animation-delay: 0.1s; }
.domino:nth-child(2) { animation-delay: 0.2s; }
.domino:nth-child(3) { animation-delay: 0.3s; }
.domino:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 40px 0 30px;
        margin-bottom: 40px;
    }
    
    .main-content {
        gap: 60px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-item.mobile-apps {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .platform-logos {
        justify-content: center;
    }
    
    .mobile-text {
        margin-left: 0;
    }
    
    .domino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .notify-section {
        padding: 40px 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .badge-content {
        padding: 12px 20px;
    }
    
    .badge-content .platform-logos {
        gap: 16px;
    }
    
    .badge-content .platform-logo {
        padding: 8px 12px;
    }
    
    .badge-content .platform-logo svg {
        width: 28px;
        height: 28px;
    }
    
    .badge-content .platform-logo span {
        font-size: 14px;
    }
    
    .logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .domino-grid {
        grid-template-columns: 1fr;
    }
    
    .domino {
        width: 70px;
        height: 140px;
    }
    
    .domino-half {
        width: 45px;
        height: 45px;
    }
    
    .hero-dominos {
        max-width: 250px;
    }
    
    .logo {
        max-width: 150px;
    }
}

/* Cookie Privacy Notice Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 300px;
}

.cookie-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
    background: var(--light-gray);
    border-color: var(--accent-color);
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-text {
        min-width: auto;
        justify-content: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Benefits Section */
.benefits-section {
    text-align: center;
    padding: 80px 0;
    background: var(--light-gray);
    margin: 60px 0;
    border-radius: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
    overflow-x: hidden;
}

.benefits-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.benefit-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-heading {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
}

.benefits-cta {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-text {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.benefits-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

/* Responsive Benefits Section */
@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .benefit-heading {
        font-size: 1.2rem;
    }
    
    .benefits-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-title {
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-icon {
        font-size: 36px;
    }
    
    .benefit-heading {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 14px;
    }
}
