/* Cosmic Theme Styles */
:root {
    --primary-color: #6E00FF;
    --primary-light: #8F3FFF;
    --primary-dark: #4A00B0;
    --accent-color: #00EAFF;
    --accent-light: #5FFFFF;
    --accent-dark: #00B8CC;
    --secondary-color: #FF3D71;
    --success-color: #00E096;
    --warning-color: #FFAA00;
    --dark-bg: #0A0E17;
    --card-bg: #151A26;
    --card-bg-hover: #1C2235;
    --text-light: #FFFFFF;
    --text-gray: #B4BDCE;
    --text-dark: #7E8BA3;
    --border-color: rgba(110, 0, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --gradient-cosmic: linear-gradient(135deg, #151A26 0%, #0A0E17 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(110, 0, 255, 0.2) 0%, transparent 70%);
}

/* Base Styles */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 160px, white, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 90px 40px, white, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 130px 80px, white, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 160px 120px, white, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    animation: stars-animation 100s linear infinite;
}

@keyframes stars-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

.nebula-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(110, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 234, 255, 0.1) 0%, transparent 40%);
    filter: blur(30px);
    opacity: 0.5;
}

.galaxy-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(110, 0, 255, 0.05) 0%, transparent 60%);
    animation: galaxy-pulse 10s ease-in-out infinite;
}

@keyframes galaxy-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(110, 0, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.planet-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
    animation: ring-rotate 10s linear infinite;
}

@keyframes ring-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(-30deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(330deg);
    }
}

.planet-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.7);
    animation: planet-pulse 3s ease-in-out infinite;
}

@keyframes planet-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(110, 0, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 25px rgba(110, 0, 255, 0.9);
    }
}

.logo-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-text span {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.toggle-icon {
    position: relative;
    width: 30px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.toggle-icon::before {
    top: -8px;
}

.toggle-icon::after {
    top: 8px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-light);
}

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

.nav-button {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 0, 255, 0.5);
}

.nav-button::after {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 0, 255, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(110, 0, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: rgba(0, 234, 255, 0.1);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.planet-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.planet-visual .planet-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(110, 0, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

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

.planet-visual .planet-ring {
    width: 220px;
    height: 220px;
    border-width: 4px;
}

.planet-visual .planet-body {
    width: 140px;
    height: 140px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.stat-card.large {
    padding: 2rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(110, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.players-icon::before {
    background-image: url('../kuvat/ikonit/players-icon.svg');
}

.games-icon::before {
    background-image: url('../kuvat/ikonit/games-icon.svg');
}

.support-icon::before {
    background-image: url('../kuvat/ikonit/support-icon.svg');
}

.awards-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/610/610333.png');
}

.globe-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/9985/9985721.png');
}

.coins-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/9382/9382189.png');
}

.rating-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/1603/1603847.png');
}

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

.stat-value {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
}

.stat-card.large .stat-value {
    font-size: 2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(odd) {
    background: var(--gradient-cosmic);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-light), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

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

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.game-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.game-provider-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(10, 14, 23, 0.8);
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 234, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.game-card:hover .game-provider-badge {
    background: var(--accent-color);
    color: var(--dark-bg);
}

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

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

.play-button {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.4);
}

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

.game-card-info {
    padding: 1.5rem;
}

.game-name {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.game-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.star::before {
    content: '★';
    position: absolute;
    color: var(--text-dark);
    font-size: 1rem;
}

.star.filled::before {
    color: var(--accent-color);
}

.star.half-filled::before {
    color: var(--text-dark);
}

.star.half-filled::after {
    content: '★';
    position: absolute;
    color: var(--accent-color);
    font-size: 1rem;
    width: 50%;
    overflow: hidden;
}

.rating-value {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.players-count {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.view-all-container {
    text-align: center;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(110, 0, 255, 0.1);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.security-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/5962/5962703.png');
}

.multiplatform-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/808/808476.png');
}

.community-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/143/143438.png');
}

.vip-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/765/765093.png');
}

.tournament-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/8665/8665117.png');
}

.bonus-icon::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/8146/8146553.png');
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
}

.author-name {
    font-weight: 600;
    color: var(--text-light);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--accent-color);
    color: var(--dark-bg);
}

.cta-section .btn-secondary {
    border-color: var(--text-light);
    color: var(--text-light);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.footer-nav-column {
    min-width: 150px;
}

.footer-nav-column h4 {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
}

.footer-nav-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-nav-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-column ul li a {
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-nav-column ul li a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
    display: inline-block;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(110, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.facebook::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/145/145802.png');
}

.twitter::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/14417/14417709.png');
}

.instagram::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/3955/3955024.png');
}

.youtube::before {
    background-image: url('https://cdn-icons-png.flaticon.com/128/3670/3670147.png');
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-icon {
    width: 50px;
    height: 30px;
    background: rgba(21, 26, 38, 0.5);
    border-radius: 5px;
    position: relative;
}

.payment-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.visa::before {
    background-image: url('../kuvat/payment/visa.svg');
}

.mastercard::before {
    background-image: url('../kuvat/payment/mastercard.svg');
}

.paypal::before {
    background-image: url('../kuvat/payment/paypal.svg');
}

.neteller::before {
    background-image: url('../kuvat/payment/neteller.svg');
}

.skrill::before {
    background-image: url('../kuvat/payment/skrill.svg');
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.age-restriction {
    font-weight: 600;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content, 
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-toggle:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .hero-stats,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}