:root {
    --primary-color: #6C63FF;
    --secondary-color: #2A2A2A;
    --accent-color: #FF6B6B;
    --text-color: #333333;
    --light-bg: #F8F9FA;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

.games-section {
    background-color: var(--light-bg);
}

.games-section h2 {
    font-weight: 700;
    color: var(--secondary-color);
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 15px;
}

.game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.game-score {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    text-align: center;
    color: white;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 5px;
}

.game-content {
    padding: 20px;
}

.game-content h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.game-description {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pros {
    margin-bottom: 20px;
}

.pro-item {
    display: inline-block;
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 0 10px 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .game-image-container {
        margin: 10px;
    }
    
    .game-image {
        height: 200px;
    }
    
    .game-content {
        padding: 15px;
    }
    
    .game-content h3 {
        font-size: 1.5rem;
    }
}

.about-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.section-title {
    margin-bottom: 2rem;
}

.section-title .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: left;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mission-statement {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-statement h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-statement p {
    color: var(--text-color);
    line-height: 1.8;
}

.review-process {
    margin-top: 3rem;
}

.review-process h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.step h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mission-statement {
        padding: 1.5rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    display: flex;
}

.contact-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-text .lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-text .description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: 3rem;
}

.email-container {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--light-bg);
    border-radius: 50px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.email-container:hover {
    transform: translateY(-3px);
}

.email-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.email-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-color);
}

.response-time {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 1.5rem;
    }

    .contact-text .lead {
        font-size: 1.2rem;
    }

    .contact-text .description {
        font-size: 1rem;
    }

    .email-container {
        padding: 0.8rem 1.5rem;
    }

    .email-link {
        font-size: 1.1rem;
    }
}

.about-image-container {
    position: relative;
    padding: 2rem;
}

.policy-section {
    background-color: var(--light-bg);
    min-height: 70vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-item {
    margin-bottom: 2.5rem;
}

.policy-item h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-item h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.policy-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-item ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-item li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.game-detail-section {
    background-color: var(--light-bg);
}

.game-detail-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.game-main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-score-badge {
    position: absolute;
    top: 20px;
    right: 35px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.game-score-badge .score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.game-score-badge .stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.game-features {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.game-features h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.game-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-features li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.game-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.game-screenshots h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.screenshot-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-img:hover {
    transform: scale(1.02);
}

.game-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.game-details h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.game-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-info-list li {
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.game-info-list strong {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.download-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
    color: white;
}

.download-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.download-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.download-info {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .game-detail-content {
        padding: 1.5rem;
    }

    .game-title {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .game-score-badge {
        right: 20px;
    }

    .download-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-title {
        font-size: 2rem;
    }
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 3rem;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-about h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding-top: 2rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-about {
        text-align: center;
    }
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.stat-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: row;
        margin-top: 1rem;
    }

    .stat-item {
        padding: 0.8rem 1.5rem;
    }
}
