/* Game page specific styles */

.game-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Back Button */
.back-button-container {
    margin-bottom: 2rem;
    text-align: left;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #4a90e2;
    border-radius: 25px;
    background: rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
    transition: left 0.5s ease;
}

.back-button:hover::before {
    left: 100%;
}

.back-button:hover {
    background: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    text-decoration: none;
}

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

.back-button:hover svg {
    transform: translateX(-2px);
}

.game-hero::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="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

/* PUBG specific background */
.game-hero[data-game="pubg"]::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../img/pubg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
}

.game-hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Stars */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: auto;
    z-index: 1;
}

/* Hide stars on mobile devices */
@media (max-width: 768px) {
    .hero-stars {
        display: none;
    }
    
    /* Optimize game-hero for mobile */
    .game-hero {
        padding: 120px 0 60px;
        min-height: 70vh;
        background-attachment: scroll !important;
    }
    
    .game-hero[style*="background-image"] {
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }
    
    .game-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
    }
    
    .game-description {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .game-hero-content {
        padding-top: 20px;
    }
}

.star {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.8;
    animation: twinkle 3s ease-in-out infinite;
    background: linear-gradient(135deg, #4a90e2 0%, #00ff88 50%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.8);
    cursor: crosshair;
    transition: all 0.3s ease;
    user-select: none;
    border-radius: 50%;
    padding: 5px;
}

.star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: none;
}

.star:hover {
    transform: scale(1.3);
    opacity: 1;
    text-shadow: 0 0 25px rgba(74, 144, 226, 1);
    cursor: crosshair;
}

.star:hover::before {
    border-color: #4a90e2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
    animation: pulse 0.5s ease-in-out infinite alternate;
}

.star.shot {
    animation: explode 0.5s ease-out forwards;
    pointer-events: none;
}

.star-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.star-2 {
    top: 25%;
    right: 12%;
    animation-delay: 0.8s;
}

.star-3 {
    top: 45%;
    left: 3%;
    animation-delay: 1.2s;
}

.star-4 {
    top: 65%;
    right: 8%;
    animation-delay: 1.8s;
}

.star-5 {
    top: 85%;
    left: 15%;
    animation-delay: 2.3s;
}

.star-6 {
    top: 35%;
    right: 2%;
    animation-delay: 2.8s;
}

.star-7 {
    top: 55%;
    left: 25%;
    animation-delay: 0.3s;
}

.star-8 {
    top: 75%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes explode {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(2);
        opacity: 0.8;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes shootingEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes fadeInScale {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes fadeOutScale {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
}

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

/* Mobile Stars */
@media (max-width: 768px) {
    .star {
        font-size: 1.4rem;
    }
    
    .star-1 {
        top: 8%;
        left: 5%;
    }
    
    .star-2 {
        top: 18%;
        right: 8%;
    }
    
    .star-3 {
        top: 38%;
        left: 2%;
    }
    
    .star-4 {
        top: 58%;
        right: 5%;
    }
    
    .star-5 {
        top: 78%;
        left: 12%;
    }
    
    .star-6 {
        top: 28%;
        right: 2%;
    }
    
    .star-7 {
        top: 48%;
        left: 20%;
    }
    
    .star-8 {
        top: 68%;
        right: 20%;
    }
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2, #00cc6a);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}


.game-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    border-radius: 50%;
    pointer-events: none;
}

.game-icon:hover::before {
    width: 120px;
    height: 120px;
    animation: crosshairPulse 1s ease-in-out infinite;
}

@keyframes crosshairPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
}

.game-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4a90e2, #00cc6a, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #00cc6a, #4a90e2);
    border-radius: 2px;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.game-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-status {
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
}

.status-active {
    background: rgba(0, 255, 136, 0.2);
    color: #4a90e2;
    border: 1px solid #4a90e2;
}

.status-coming-soon {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-maintenance {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #4a90e2;
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.2),
        0 0 20px rgba(0, 255, 136, 0.1);
}

.product-card:hover::after {
    width: 200px;
    height: 200px;
    animation: productPulse 1s ease-in-out infinite;
}

@keyframes productPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #4a90e2, #00cc6a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 0;
}

.product-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    color: #4a90e2;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-buy {
    background: linear-gradient(45deg, #4a90e2, #357abd, #4a90e2);
    background-size: 200% 200%;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3.5s ease-in-out infinite;
    box-shadow: 
        0 4px 15px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-buy::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4a90e2, #357abd, #4a90e2, #4a90e2);
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: gradientShift 2s ease-in-out infinite;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
    animation-duration: 1.8s;
}

.btn-info {
    background: transparent;
    color: #4a90e2;
    padding: 1rem 2rem;
    border: 1px solid #4a90e2;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.btn-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-info:hover::before {
    left: 100%;
}

.btn-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-info:hover::before {
    left: 100%;
}

.btn-info:hover {
    background: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #111111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2, #00cc6a);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

/* Software Description Section */
.software-description {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.description-content {
    max-width: 1000px;
    margin: 0 auto;
}

.description-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.description-section h3 {
    color: #4a90e2;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.description-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4a90e2 0%, #00ff88 100%);
    border-radius: 2px;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    line-height: 1.6;
}

.description-list li:last-child {
    border-bottom: none;
}

.description-list li::before {
    content: "•";
    color: #4a90e2;
    font-weight: bold;
    margin-right: 0.5rem;
}

.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.tech-spec {
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
}

.tech-spec h4 {
    color: #4a90e2;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tech-spec p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-item {
    background: rgba(0, 255, 136, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.pricing-item h4 {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pricing-item .price {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-item p:last-child {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.screenshot-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.screenshot-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-caption {
    padding: 1rem;
    text-align: center;
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.screenshot-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.screenshot-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Video Item */
.video-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
    transform: scale(1.02);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6);
}

.video-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.video-placeholder-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.video-placeholder-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
}

.video-error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 0, 0, 0.3);
    display: none;
}

.video-error-message.show {
    display: block;
}

/* Pricing Info */
.pricing-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-info p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.pricing-info strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Purchase Options */
.purchase-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.purchase-option {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.purchase-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.purchase-option:hover::before {
    left: 100%;
}

.purchase-option:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.purchase-option h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.purchase-option .price {
    color: #4a90e2;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.purchase-option .description {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.purchase-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.purchase-btn:hover::before {
    left: 100%;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
    text-decoration: none;
    color: #ffffff;
}

.purchase-btn svg {
    transition: transform 0.3s ease;
}

.purchase-btn:hover svg {
    transform: scale(1.1);
}

/* Compact Tech Specs */
.tech-specs-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 2rem;
}

.tech-spec-row:last-child {
    border-bottom: none;
}

.tech-label {
    color: #cccccc;
    font-weight: 500;
    font-size: 0.85rem;
    flex: 0 0 auto;
    margin-right: 1rem;
}

.tech-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: right;
    flex: 1;
    word-break: break-word;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 0;
    color: #888888;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 2rem;
    }
    
    .game-description {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-buy,
    .btn-info {
        flex: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
}
