/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6700;
    --primary-glow: rgba(255, 103, 0, 0.6);
    --secondary-color: #4a96ff;
    --secondary-glow: rgba(74, 150, 255, 0.6);
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f8f8f8;
    --gray-color: #333333;
    --success-color: #32cd32;
    
    /* Additional creative colors */
    --cyber-orange: #ff6700;
    --cyber-blue: #4a96ff;
    --legendary-color: #ff9500;
    --epic-color: #d600ff;
    --rare-color: #0088ff;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    position: relative;
}

/* Particle background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--primary-color) 0.1%, transparent 0.5%),
        radial-gradient(circle at 30% 30%, var(--secondary-color) 0.1%, transparent 0.3%),
        radial-gradient(circle at 50% 40%, var(--primary-color) 0.1%, transparent 0.5%),
        radial-gradient(circle at 70% 60%, var(--secondary-color) 0.1%, transparent 0.3%),
        radial-gradient(circle at 90% 90%, var(--primary-color) 0.1%, transparent 0.5%);
    opacity: 0.1;
    filter: blur(1px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: inline-block;
}

.logo img {
    height: 40px;
    position: relative;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
    filter: blur(15px);
    opacity: 0.3;
    z-index: 0;
    animation: pulse-glow 3s infinite;
}

.glow-effect.small {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    padding: 5px 0;
}

.glitch-hover span {
    position: relative;
    display: inline-block;
}

.glitch-hover:hover span {
    animation: glitch 0.3s linear;
    color: var(--primary-color);
}

@keyframes glitch {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
        color: var(--cyber-blue);
    }
    50% {
        transform: translateX(2px);
        color: var(--cyber-orange);
    }
    75% {
        transform: translateX(-1px);
        color: var(--cyber-blue);
    }
    100% {
        transform: translateX(0);
        color: var(--primary-color);
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s;
}

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

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    color: var(--light-color);
    font-weight: 500;
    transition: color 0.3s;
}

.login-btn:hover {
    color: var(--primary-color);
}

.signup-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.signup-btn:hover {
    background-color: #ff7a21;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 103, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    filter: contrast(1.2) brightness(0.7);
}

/* Cyber grid decorations */
.cyber-grid {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(74, 150, 255, 0.05) 25%, transparent 25%, transparent 50%, 
                rgba(74, 150, 255, 0.05) 50%, rgba(74, 150, 255, 0.05) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.cyber-grid.top-left {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0% 100%);
}

.cyber-grid.bottom-right {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
}

.hero-glitches .glitch {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: 0;
}

.glitch-1 {
    top: 30%;
    left: 5%;
    width: 50px;
    height: 3px;
    animation: glitch-move 5s linear infinite alternate;
}

.glitch-2 {
    bottom: 25%;
    right: 10%;
    width: 100px;
    height: 5px;
    animation: glitch-move 7s linear infinite alternate-reverse;
}

@keyframes glitch-move {
    0%, 100% {
        transform: translateX(0) skewX(0deg);
        opacity: 0.1;
    }
    20% {
        transform: translateX(30px) skewX(20deg);
        opacity: 0.2;
    }
    40% {
        transform: translateX(-15px) skewX(-15deg);
        opacity: 0.1;
    }
    60% {
        transform: translateX(20px) skewX(10deg);
        opacity: 0.3;
    }
    80% {
        transform: translateX(-10px) skewX(-5deg);
        opacity: 0.1;
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--cyber-orange));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px var(--primary-glow);
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 30%, transparent 60%);
    transform: rotate(45deg);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 103, 0, 0.3);
}

.cyber-text {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    position: relative;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
    transform: skewX(-15deg);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.accent {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.promo-code {
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.code-container {
    position: relative;
    overflow: hidden;
}

.promo-code .code {
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
}

.code-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: code-shine 5s infinite;
}

@keyframes code-shine {
    0% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

.copy-code {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--secondary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-code:hover {
    background-color: #3a86ff;
    transform: translateY(-2px);
}

.copy-code:hover .btn-glow {
    opacity: 0.7;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.copy-code i {
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 103, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #ff7a21;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 103, 0, 0.4);
}

.btn-primary:hover .btn-shine {
    animation: btn-shine 1s forwards;
}

@keyframes btn-shine {
    0% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

.btn-steam {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #171a21;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.steam-icon-glow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    filter: blur(20px);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s;
    left: 15px;
    top: calc(50% - 25px);
}

.btn-steam:hover {
    background-color: #1f232f;
    transform: translateY(-3px);
}

.btn-steam:hover .steam-icon-glow {
    opacity: 0.5;
}

.btn-steam i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.case-animation {
    width: 100%;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.case-top, .case-bottom {
    position: absolute;
    width: 80%;
    height: 40%;
    left: 10%;
    background-color: rgba(255, 103, 0, 0.1);
    border: 1px solid rgba(255, 103, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 103, 0, 0.2);
    transform-style: preserve-3d;
}

.case-top {
    top: 20%;
    transform: rotateX(-20deg);
    animation: case-top 3s infinite alternate;
    z-index: 2;
}

.case-bottom {
    bottom: 20%;
    transform: rotateX(20deg);
    animation: case-bottom 3s infinite alternate;
    z-index: 1;
}

@keyframes case-top {
    0% {
        transform: rotateX(-20deg) translateY(0);
    }
    100% {
        transform: rotateX(-30deg) translateY(-20px);
    }
}

@keyframes case-bottom {
    0% {
        transform: rotateX(20deg) translateY(0);
    }
    100% {
        transform: rotateX(30deg) translateY(20px);
    }
}

.weapon-skin {
    position: absolute;
    width: 60%;
    height: 30%;
    left: 20%;
    top: 35%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
    border-radius: 5px;
    z-index: 3;
    transform: translateY(0) scale(1);
    animation: float 3s infinite ease-in-out;
    box-shadow: 0 0 30px rgba(255, 103, 0, 0.5);
    overflow: hidden;
}

.weapon-skin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    animation: pulse-opacity 3s infinite alternate;
}

@keyframes pulse-opacity {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

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

.floating-items {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-items .item {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-items .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.item:hover {
    transform: scale(1.1) translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(255, 103, 0, 0.3);
    z-index: 10;
}

.item:hover img {
    transform: scale(1.1);
}

.item-1 {
    top: 15%;
    left: 15%;
    width: 80px;
    height: 50px;
    animation: float-item 7s infinite ease-in-out;
}

.item-2 {
    top: 25%;
    right: 15%;
    width: 90px;
    height: 60px;
    animation: float-item 5s infinite ease-in-out reverse;
}

.item-3 {
    bottom: 30%;
    left: 20%;
    width: 85px;
    height: 55px;
    animation: float-item 6s infinite ease-in-out 1s;
}

.item-4 {
    bottom: 20%;
    right: 15%;
    width: 70px;
    height: 50px;
    animation: float-item 8s infinite ease-in-out 2s;
}

@keyframes float-item {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.rarities {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.rarity {
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.legendary {
    background-color: rgba(255, 149, 0, 0.2);
    color: var(--legendary-color);
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.epic {
    background-color: rgba(214, 0, 255, 0.2);
    color: var(--epic-color);
    border: 1px solid rgba(214, 0, 255, 0.3);
}

.rare {
    background-color: rgba(0, 136, 255, 0.2);
    color: var(--rare-color);
    border: 1px solid rgba(0, 136, 255, 0.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 28 49' fill='none'%3E%3Cpath d='M13.99 0L27.98 7V21L13.99 28L0 21V7L13.99 0Z' fill='%23ff6700' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--light-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translateX(-50%);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color));
    transform: translateX(-50%) translateY(6px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .card-border {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
    position: relative;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .icon-glow {
    opacity: 0.5;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Cases Section */
.cases {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

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

.case-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.case-img {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 103, 0, 0.1), rgba(74, 150, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
    mix-blend-mode: luminosity;
}

.case-card:hover .case-img img {
    transform: scale(1.1);
    opacity: 1;
    mix-blend-mode: normal;
}

.case-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
                linear-gradient(135deg, rgba(255, 103, 0, 0.1), rgba(74, 150, 255, 0.1));
    background-size: 70px, cover;
    opacity: 0.5;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.case-card:hover .case-img::before {
    opacity: 0.3;
}

.case-card h3 {
    padding: 20px;
    font-size: 1.3rem;
    color: var(--light-color);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.case-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.case-btn {
    display: block;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    padding: 12px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    width: 100%;
}

.case-card:hover .case-btn {
    background-color: var(--primary-color);
}

.featured {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 103, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 3px;
    z-index: 2;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cyber-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(255, 103, 0, 0.3) 98%),
        linear-gradient(0deg, transparent 98%, rgba(74, 150, 255, 0.3) 98%);
    background-size: 50px 50px;
    opacity: 0.1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-glow);
}

.pulse-btn {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 103, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 103, 0, 0);
    }
}

.countdown {
    margin-top: 40px;
}

.countdown p {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    min-width: 80px;
    transition: background-color 0.3s ease;
}

.time-unit.flash {
    animation: timer-flash 1s ease;
}

@keyframes timer-flash {
    0%, 100% {
        background-color: rgba(255, 255, 255, 0.05);
    }
    50% {
        background-color: rgba(255, 103, 0, 0.3);
        box-shadow: 0 0 20px var(--primary-glow);
    }
}

.time-unit .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.time-unit .label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--darker-color);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-cyber-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    opacity: 0.3;
}

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

.footer-logo {
    position: relative;
}

.footer-logo img {
    height: 40px;
    display: block;
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .timer {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        justify-content: center;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-steam {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .promo-code {
        flex-direction: column;
        width: 100%;
    }
    
    .promo-code .code {
        width: 100%;
        text-align: center;
    }
    
    .copy-code {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .case-card {
        max-width: 280px;
        margin: 0 auto;
    }
} 