/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding-top: 50px;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
}

.hero-section h1 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Features Section */
.feature-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Download Section */
.download-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Contact Section */
#contact {
    background-color: var(--light-bg);
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

/* Footer */
footer {
    background-color: #2d3436;
}

footer a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Screenshots Section */
#screenshots {
    background-color: var(--light-bg);
}

.carousel {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.carousel-item {
    height: 500px;
    background-color: #000;
}

.carousel-item img {
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
}

/* Game Description Section */
#description {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#description .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

#description .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#description .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#description .feature-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

#description .feature-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

#description .btn-primary {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

#description .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

@media (max-width: 768px) {
    #description .feature-card {
        margin-bottom: 2rem;
    }
    
    #description .lead {
        font-size: 1.1rem;
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding-top: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.privacy-policy h1 {
    color: var(--primary-color);
    font-weight: bold;
}

.privacy-policy h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-section ul {
    padding-left: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .privacy-policy {
        padding-top: 80px;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
} 