/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(90deg, #00ff8c, #00c3ff);
    --accent-color-1: #00ff8c;
    --accent-color-2: #00c3ff;
    --background-color: #111927;
    --card-bg: #192232;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: 
        radial-gradient(at 47% 33%, rgba(0, 255, 140, 0.15) 0, transparent 59%), 
        radial-gradient(at 82% 65%, rgba(0, 195, 255, 0.18) 0, transparent 55%);
}

/* Animated Background Gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #171f2e 0%, #0d1117 100%);
    color: var(--text-color);
    padding: 2rem 0;
    position: relative;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    overflow: visible;
}

.logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.logo-container {
    position: relative;
    height: 120px;
    width: 120px;
    margin-right: 10px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 140, 0.3)) 
            drop-shadow(0 0 12px rgba(0, 195, 255, 0.2));
}

.logo-img {
    height: 120px;
    width: 120px;
    -webkit-mask-image: url('voll_trans.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('voll_trans.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    animation: gradientAnimation 4s ease infinite;
}

/* Create a gradient container for the image */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    overflow: visible;
}

.logo span {
    background: linear-gradient(90deg, #00ff8c, #00c3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color-1);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    animation: gradientAnimation 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.btn {
    display: inline-block;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    animation: gradientAnimation 4s ease infinite;
    color: #000;
    padding: 0.8rem 2rem;
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 140, 0.2);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #0c1521;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 1rem auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 3px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 195, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    animation: gradientAnimation 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 1 !important; /* Ensure the container is always visible */
    visibility: visible !important; /* Force visibility */
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    pointer-events: none;
    z-index: 1; /* Ensure it's above the image but doesn't block it */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block !important;
    transition: transform 0.5s ease;
    opacity: 1 !important; /* Make sure the image is visible by default */
    visibility: visible !important; /* Ensure visibility */
    pointer-events: auto; /* Allow interaction */
    position: relative;
    z-index: 2; /* Ensure image is above the pseudo-element */
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #171f2e 0%, #0d1117 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 140, 0.1) 0, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 195, 255, 0.1) 0, transparent 50%);
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    position: relative;
}

/* Footer */
footer {
    background-color: #0a101b;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    margin-top: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
}

.footer-column a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-column a:hover {
    color: var(--accent-color-1);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}

/* Pricing Section Styles */
.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    animation: gradientAnimation 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing {
    padding: 5rem 0;
    background-color: #0c1521;
}

/* Game selector dropdown styles */
.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-selector {
    margin: 0 auto 3rem;
    text-align: center;
    max-width: 400px;
    padding: 1.2rem;
    background: rgba(25, 34, 50, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-selector label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.game-selector select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    background-color: var(--card-bg);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.game-selector select:focus {
    outline: none;
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 2px rgba(0, 255, 140, 0.2);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color-2);
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-container {
        height: 60px;
        width: 60px;
    }
    
    .logo-img {
        height: 60px;
        width: 60px;
    }
    
    .logo span {
        font-size: 2rem;
    }
}