/* Racing Theme CSS */
:root {
    --primary-red: #ff3333;
    --secondary-orange: #ff6600;
    --accent-yellow: #ffcc00;
    --dark-black: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --racing-gradient: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-orange) 100%);
    --speed-gradient: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 3px solid var(--primary-red);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content .modal-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm, .btn-decline {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-confirm {
    background: var(--racing-gradient);
    color: var(--white);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
}

.btn-decline {
    background: var(--light-gray);
    color: var(--text-dark);
}

.btn-decline:hover {
    background: #ddd;
}

/* Racing Navigation */
.racing-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow-color);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-brand .brand-logo i {
    font-size: 2rem;
    background: var(--racing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--racing-gradient);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

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

.contact-btn {
    background: var(--racing-gradient);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
}

/* Hero Racing Section */
.hero-racing {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.racing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 51, 51, 0.1) 50px,
            rgba(255, 51, 51, 0.1) 52px
        );
    animation: speedLines 3s linear infinite;
}

@keyframes speedLines {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--racing-gradient);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease;
}

.hero-title {
    margin-bottom: 20px;
    animation: slideInLeft 1s ease 0.2s both;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--racing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInLeft 1s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--racing-gradient);
    color: var(--white);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--speed-gradient);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-3px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-showcase {
    animation: slideInRight 1s ease 0.8s both;
}

.game-display {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 60px var(--shadow-color);
    overflow: hidden;
    border: 2px solid var(--primary-red);
    position: relative;
}

.display-header {
    background: var(--dark-black);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.light.red { background: #ff5555; }
.light.yellow { background: #ffcc00; animation-delay: 0.3s; }
.light.green { background: #55ff55; animation-delay: 0.6s; }

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.display-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
}

.display-screen {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.game-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.display-screen:hover .screen-overlay {
    opacity: 1;
}

.play-button {
    text-align: center;
    color: var(--white);
}

.play-button i {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.play-button span {
    display: block;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.2rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Racing Section */
.features-racing {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--racing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--racing-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* About Racing Section */
.about-racing {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-color);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.card-header {
    background: var(--racing-gradient);
    color: var(--white);
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.card-header i {
    font-size: 2rem;
}

.card-header h2 {
    font-size: 2rem;
    margin: 0;
}

.card-body {
    padding: 40px;
    display: grid;
    grid-template-columns:  1fr;
    gap: 30px;
    align-items: center;
}

.developers-card .card-body {
    grid-template-columns: 1fr;
}

.card-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--racing-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image:hover .image-overlay {
    opacity: 0.3;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Disclaimer Racing Section */
.disclaimer-racing {
    padding: 100px 0;
    background: var(--white);
}

.disclaimer-panel {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 60px 40px;
    border: 2px solid var(--primary-red);
}

.panel-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.panel-header i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.panel-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0;
}

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

.disclaimer-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.2);
}

.item-icon {
    background: var(--racing-gradient);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.item-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Racing Section */
.contact-racing {
    padding: 100px 0;
    background: var(--dark-black);
    color: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--racing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    background: var(--racing-gradient);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.info-text p {
    color: #ccc;
}

.contact-reasons {
    margin-top: 40px;
}

.contact-reasons h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.reason-item i {
    color: var(--primary-red);
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
}

.form-header p {
    color: #ccc;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
}

.input-group input,
.input-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.2);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #ccc;
}

.form-submit {
    background: var(--racing-gradient);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--speed-gradient);
    transition: left 0.5s ease;
}

.form-submit:hover::after {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.4);
}

/* Trust Racing Section */
.trust-racing {
    padding: 60px 0;
    background: var(--light-gray);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: block;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.badge-item:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.badge-item img {
    height: 60px;
    width: auto;
}

/* Racing Footer */
.racing-footer {
    background: var(--dark-black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .brand-header i {
    font-size: 2rem;
    background: var(--racing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .brand-header h3 {
    font-size: 1.8rem;
    color: var(--white);
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.footer-newsletter h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.newsletter-input::placeholder {
    color: #ccc;
}

.newsletter-button {
    background: var(--racing-gradient);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link {
    text-decoration: none;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }
    
    .nav-menu {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        gap: 30px;
    }
    
    .card-body {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .developers-card .card-body {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .age-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .hero-racing {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions button {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .disclaimer-panel {
        padding: 40px 20px;
    }
}

* Games Showcase */
.games-showcase {
    padding: 120px 30px;
    background: #c1edf8;
    position: relative;
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.title-spark {
    animation: sparkle 1.5s ease-in-out infinite alternate;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.game-card {
    background: linear-gradient(145deg, #c28e20, #a52201);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.game-card.featured {
    border-color: #8A2BE2;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #8A2BE2, #4B0082);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-frame {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.game-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-frame img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a2e;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.game-card:hover .play-btn {
    transform: translateY(0);
}

.play-icon {
    font-size: 1.2rem;
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.game-badges {
    display: flex;
    gap: 10px;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}


  .content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #af3606;
}

.content-block p,
ul {
    color: rgb(92, 91, 91);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}
a {
  text-decoration: none;
}
