* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0A0E1A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #0F1419;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    height: 50px;
    width: auto;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-primary {
    background-color: #00D4FF;
    color: #0A0E1A;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0099CC;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #00D4FF;
    color: #00D4FF;
}

.btn-secondary:hover {
    background-color: #00D4FF;
    color: #0A0E1A;
}

.btn-play {
    background-color: #00FF88;
    color: #0A0E1A;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-play:hover {
    background-color: #00CC6A;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #0A0E1A 0%, #1A1F2E 100%);
    text-align: center;
    position: relative;
}

.hero::before, .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300D4FF" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00D4FF, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    color: #B0B8C8;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    margin-top: 20px;
    color: #7A8394;
}

/* Game Cards */
.games-section {
    padding: 80px 0;
    background-color: #0A0E1A;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    color: #00D4FF;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card {
    background-color: #1A1F2E;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF, #00FF88);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #00D4FF;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.game-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.game-icon {
    font-size: 2.5rem;
}

.game-title {
    font-size: 1.8rem;
    color: #00D4FF;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.game-stats {
    list-style: none;
    margin: 20px 0;
}

.game-stats li {
    padding: 8px 0;
    border-bottom: 1px solid #252B3D;
    color: #B0B8C8;
}

.game-stats li:last-child {
    border-bottom: none;
}

.game-stats li strong {
    color: #FFFFFF;
}

/* Comparison Table */
.table-title {
    color: #00D4FF;
    text-align: center;
    margin: 40px 0;
}

.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.table-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.table-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1A1F2E;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #252B3D;
}

th {
    background-color: #00D4FF;
    color: #0A0E1A;
    font-weight: bold;
}

tr:hover {
    background-color: #252B3D;
}

/* How to Play Section */
.how-to-play {
    background-color: #1A1F2E;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.how-to-play-title {
    color: #00FF88;
    text-align: center;
    margin-bottom: 30px;
}

.how-to-play-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: center;
}

.how-to-play-list {
    color: #B0B8C8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.how-to-play-list li {
    margin-bottom: 10px;
}

.how-to-play-list strong {
    color: #FFFFFF;
}

.how-to-play-note {
    margin-top: 20px;
    color: #7A8394;
}

.how-to-play-image {
    width: 100%;
    border-radius: 10px;
}

/* Strategy Sections */
.strategy-main {
    background-color: #0A0E1A;
    padding: 80px 0;
}

.strategy-main-title {
    color: #00D4FF;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.strategy-section {
    background-color: #1A1F2E;
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 20px;
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.strategy-image {
    width: 100%;
    position: sticky;
    top: 100px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.strategy-text h3 {
    color: #00FF88;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.strategy-description {
    color: #B0B8C8;
    margin-bottom: 30px;
}

.strategy-steps {
    counter-reset: step-counter;
}

.strategy-step {
    counter-increment: step-counter;
    margin: 20px 0;
    padding: 20px;
    background-color: #252B3D;
    border-radius: 10px;
    border-left: 4px solid #00D4FF;
    position: relative;
}

.strategy-step::before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 20px;
    background-color: #00D4FF;
    color: #0A0E1A;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.strategy-step h4 {
    color: #00FF88;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.strategy-example {
    background-color: #252B3D;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.strategy-example h4 {
    color: #00FF88;
}

.strategy-example ul {
    color: #B0B8C8;
    list-style: none;
}

.strategy-button {
    margin-top: 20px;
}

.speed-guide {
    background-color: #1A1F2E;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

/* Why Crash Games Section */
.why-crash-games {
    background-color: #1A1F2E;
    padding: 60px 0;
}

.why-crash-games-title {
    color: #00FF88;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.why-crash-games-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-crash-games-list {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #B0B8C8;
}

.why-crash-games-list li {
    list-style: none;
    margin-bottom: 15px;
}

.why-crash-games-list i {
    margin-right: 10px;
}

.why-crash-games-list .icon-blue {
    color: #00D4FF;
}

.why-crash-games-list .icon-green {
    color: #00FF88;
}

.why-crash-games-list strong {
    color: #FFFFFF;
}

.why-crash-games-button {
    margin-top: 30px;
}

.why-crash-games-image {
    width: 100%;
    border-radius: 15px;
}

/* Call to Action */
.cta-section {
    padding: 80px 0;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}


.cta-section h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    animation: pulse-glow 3s ease-in-out infinite;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    opacity: 0.95;
}

.logo-link img{
   filter: drop-shadow(0 0 100px rgba(0, 212, 255, 1));
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.cta-buttons .btn {
    background: rgba(255, 255, 255, 0.95);
    color: #0A0E1A;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    background: rgba(10, 14, 26, 0.95);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn:active {
    transform: translateY(-4px) scale(1.02);
}

.cta-buttons .btn i {
    margin-right: 12px;
    font-size: 1.2em;
    animation: bounce-icon 2s ease-in-out infinite;
}

.cta-note {
    margin-top: 40px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

/* CTA Animations */
@keyframes float-dots {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% { 
        text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

@keyframes bounce-icon {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Enhanced CTA responsiveness */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .cta-buttons .btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        border-radius: 15px;
        padding: 40px 0;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .cta-buttons .btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: #0F1419;
    padding: 40px 0;
    text-align: center;
    color: #7A8394;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .strategy-content {
        grid-template-columns: 1fr;
    }

    .how-to-play-content {
        grid-template-columns: 1fr;
    }

    .why-crash-games-content {
        grid-template-columns: 1fr;
    }

    .table-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .strategy-step {
        padding: 15px;
        margin-left: 15px;
    }

    .game-card {
        padding: 20px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse effect for important buttons */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
} 