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

body {
    font-family: 'Arial Black', Arial, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

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

.header {
    background: #00ff00;
    border-bottom: 8px solid #000;
    padding: 30px 0;
    box-shadow: 8px 8px 0 #ff00ff;
}

.back-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #ffff00;
    border: 4px solid #000;
    box-shadow: 4px 4px 0 #000;
    transition: all 0.2s;
}

.back-link:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000;
}

.title {
    font-size: 3.5rem;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 4px 4px 0 #ff00ff, 8px 8px 0 #00ffff;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.hero {
    background: #ff00ff;
    border-bottom: 8px solid #000;
    padding: 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    text-shadow: 6px 6px 0 #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 3px 3px 0 #000;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border: 5px solid #000;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 6px 6px 0 #000;
}

.btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #000;
}

.btn:active {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 #000;
}

.btn-primary {
    background: #ffff00;
    color: #000;
}

.btn-secondary {
    background: #00ffff;
    color: #000;
    width: 100%;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-large {
    padding: 25px 60px;
    font-size: 1.5rem;
}

.games-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 4px 4px 0 #00ff00;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-weight: bold;
    color: #666;
}

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

.game-card {
    border: 6px solid #000;
    background: #fff;
    box-shadow: 10px 10px 0 #000;
    transition: all 0.3s;
    overflow: hidden;
}

.game-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0 #000;
}

.game-image-wrapper {
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid #000;
}

.game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.price-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff00ff;
    color: #fff;
    padding: 10px 20px;
    border: 4px solid #000;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 4px 4px 0 #000;
    text-decoration: line-through;
}

.free-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00ff00;
    color: #000;
    padding: 10px 20px;
    border: 4px solid #000;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 4px 4px 0 #000;
    animation: pulse 1.5s infinite;
}

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

.game-content {
    padding: 25px;
}

.game-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000;
}

.game-description {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
}

.features-section {
    background: #00ffff;
    padding: 80px 0;
    border-top: 8px solid #000;
    border-bottom: 8px solid #000;
}

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

.feature-card {
    background: #fff;
    border: 6px solid #000;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 8px 8px 0 #000;
}

.feature-icon {
    font-size: 3rem;
    font-weight: bold;
    color: #ff00ff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #ffff00;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

.assets-section {
    padding: 80px 0;
    background: #fff;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.asset-card {
    border: 5px solid #000;
    background: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 6px 6px 0 #000;
    transition: all 0.3s;
    position: relative;
}

.asset-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000;
}

.asset-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 4px solid #000;
    margin-bottom: 15px;
}

.asset-price-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #ff00ff;
    color: #fff;
    padding: 8px 15px;
    border: 3px solid #000;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 3px 3px 0 #000;
}

.asset-name {
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    min-height: 40px;
}

.cta-section {
    background: #ffff00;
    padding: 80px 0;
    border-top: 8px solid #000;
}

.cta-box {
    text-align: center;
    background: #ff00ff;
    border: 8px solid #000;
    padding: 60px 40px;
    box-shadow: 12px 12px 0 #000;
}

.cta-title {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 5px 5px 0 #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 0 #000;
}

.cta-warning {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #ffff00;
    font-weight: bold;
    text-shadow: 2px 2px 0 #000;
}

.footer {
    background: #000;
    color: #00ff00;
    padding: 30px 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.product-section {
    padding: 60px 0;
    background: #fff;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-section {
    position: sticky;
    top: 20px;
}

.product-image {
    width: 100%;
    border: 8px solid #000;
    box-shadow: 12px 12px 0 #000;
}

.product-info-section {
    padding: 20px;
}

.product-title {
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #000;
    text-shadow: 4px 4px 0 #00ff00;
}

.product-price-box {
    background: #ffff00;
    border: 6px solid #000;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 8px 8px 0 #000;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-price-old {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: line-through;
    color: #666;
}

.product-price-new {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    animation: pulse 1.5s infinite;
}

.product-description {
    background: #f0f0f0;
    border: 5px solid #000;
    padding: 30px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-line;
    font-weight: bold;
    box-shadow: 6px 6px 0 #000;
}

.product-btn {
    width: 100%;
    margin-bottom: 30px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-badge {
    background: #00ffff;
    border: 4px solid #000;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 4px 4px 0 #000;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .assets-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cta-title {
        font-size: 2rem;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-section {
        position: static;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price-old {
        font-size: 1.5rem;
    }

    .product-price-new {
        font-size: 2rem;
    }
}
