/* Global Styles */
:root {
    --primary-color: #ff6b2b;
    --secondary-color: #2b3990;
    --accent-color: #ffd700;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Orbitron', sans-serif;
}

/* Navigation */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.download-btn {
    background-color: var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
}

.download-btn:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.download-platforms {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.platform-btn {
    background: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.platform-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.platform-btn img {
    height: 40px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-info {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}



.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .download-platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .btn-primary {
        padding: 0.6rem 1.5rem;
    }
} 

/* Policy Pages */
.policy-section {
    padding: 120px 0 60px;
    background-color: var(--light-bg);
}

.policy-section h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policy-content h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    list-style: none;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    margin-top: 1rem;
}

/* Gallery Page */
.gallery-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-grid {
    padding: 60px 0;
    background-color: var(--light-bg);
}



.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.game-story {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-modes {
    margin: 2rem 0;
}

.mode {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.system-requirements {
    margin: 2rem auto;
    max-width: 600px;
}

.requirements-table {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirements-table h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.requirements-table ul {
    list-style: none;
    padding: 0;
}

.requirements-table li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.requirements-table li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .system-requirements {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        width: 50%;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-section h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        width: 100%;
    }
    
    .gallery-item img {
        height: 220px;
    }
} 

/* Game Popup */
.game-popup {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: relative;
    z-index: 1031;
}

.popup-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.popup-content p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
}

.popup-buttons .btn {
    padding: 0.5rem 2rem;
    font-weight: 500;
    border-radius: 25px;
}

/* Popup Responsive Design */
@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        gap: 1rem;
        padding: 25rem 0;
        text-align: center;
    }

    .popup-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .popup-buttons .btn {
        padding: 0.4rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .popup-content p {
        font-size: 1rem;
    }

    .popup-buttons {
        gap: 0.5rem;
    }

    .popup-buttons .btn {
        padding: 0.3rem 1.2rem;
        font-size: 0.9rem;
    }
} 