:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #00cec9;
    --dark-bg: #2d3436;
    --light-text: #f8f9fa;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--accent-color) !important;
}

.navbar {
    background: rgba(45, 52, 54, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.hero-section {
    background: var(--gradient-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    z-index: 2;
}

.hero-section::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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    color: var(--light-text);
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-body {
    color: var(--light-text);
}

.card-title {
    color: var(--light-text);
}

/* Contact page specific styles */
.contact-icon {
    font-size: 4rem;
    color: var(--accent-color);
    display: block;
}

.contact-progress {
    height: 8px;
    background-color: var(--dark-bg);
}

.contact-progress-bar {
    width: 65%;
}

.card-text {
    color: var(--light-text);
}

.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--primary-color);
    padding: 40px 0 20px;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg); 
        opacity: 0.8;
    }
}

/* Particle positioning and animation delays */
.particle-1 { left: 10%; top: 20%; animation-delay: 0s; }
.particle-2 { left: 20%; top: 60%; animation-delay: 2s; }
.particle-3 { left: 30%; top: 40%; animation-delay: 4s; }
.particle-4 { left: 40%; top: 80%; animation-delay: 1s; }
.particle-5 { left: 50%; top: 30%; animation-delay: 3s; }
.particle-6 { left: 60%; top: 70%; animation-delay: 5s; }
.particle-7 { left: 70%; top: 50%; animation-delay: 2s; }
.particle-8 { left: 80%; top: 25%; animation-delay: 4s; }
.particle-9 { left: 90%; top: 65%; animation-delay: 1s; }

.value-icon {
    font-size: 2rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
}

.team-avatar-icon {
    font-size: 3rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    color: var(--accent-color);
}

.game-icon {
    font-size: 4rem;
    color: var(--accent-color);
}

.game-hero-image {
    position: relative;
}

.game-hero-image .game-icon {
    font-size: 8rem;
    color: var(--accent-color);
}

.game-banner {
    width: 200px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
}

.features-section {
    background: rgba(255, 255, 255, 0.02);
}

.tagline-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--accent-color);
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    margin: 0;
}

/* SuchPixel Studio Logo Styles */
.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-brand:hover .footer-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* About page logo */
.about-studio-logo {
    width: 120px;
    height: 120px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.about-logo:hover .about-studio-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .navbar-logo {
        height: 32px;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .about-studio-logo {
        width: 140px;
        height: 100px;
    }
}

/* Featured Game Section */
.featured-game-section {
    background: rgba(255, 255, 255, 0.02);
}

.featured-game-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 40px;
    transition: all 0.3s ease;
}

.featured-game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-game-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.featured-game-card:hover .featured-game-image {
    transform: scale(1.02);
}

.featured-game-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--accent-color);
}

.featured-game-description {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-game-badges {
    margin-bottom: 1.5rem;
}

.featured-game-badge {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Game Showcase */
.game-showcase-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 40px;
    transition: all 0.3s ease;
}

.game-showcase-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-showcase-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.game-showcase-card:hover .game-showcase-image {
    transform: scale(1.02);
}

.game-showcase-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--accent-color);
}

.game-showcase-description {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-showcase-badges {
    margin-bottom: 1.5rem;
}

.game-showcase-badge {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-showcase-feature-list {
    list-style: none;
    padding: 0;
    color: var(--light-text);
}

.game-showcase-feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.game-showcase-feature-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}
