@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --text-color: #333;
    --bg-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-color);
    transform: skewY(-3deg);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
}

.logo a
{
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
    border-radius: 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    
}

.nav-links a:hover {
    color: #000000;
    
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.hero {
    text-align: center;
    padding: 6rem 0;  
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;  
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;  
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: var(--primary-color);
    padding: 1rem 2.5rem;  
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 6rem 0;  
}

.feature {
    text-align: center;
    max-width: 300px;
    margin: 2.5rem; 
}

.feature i {
    font-size: 3.5rem;  
    color: var(--primary-color);
    margin-bottom: 1.5rem;  
}

.game-preview {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: white;
    padding: 6rem 0;  
    text-align: center;
}

.game-preview h2 {
    font-size: 2.8rem; 
    margin-bottom: 2.5rem;  
}

.game-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 3rem 0; 
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.social-links {
    margin-top: 1.5rem;  
}

.social-links a {
    color: white;
    font-size: 1.8rem;  
    margin: 0 15px;  
    transition: color 0.3s ease;
}


.social-links a:hover {
    color: var(--secondary-color);
}

.about, .mission, .team, .contact-info {
    margin-bottom: 4rem;
}

.about h2, .mission h2, .team h2, .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about p, .mission p, .team p, .contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.contact-info, .contact-form {
    margin-bottom: 4rem;
}

.contact-info h2, .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form button {
    display: inline-block;
    background-color: #ffd700;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-message {
    text-align: center;
    margin-top: 4rem;
}

.thank-you-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thank-you-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.thank-you-message .cta-button {
    background-color: #ffd700;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.thank-you-message .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.game-detail {
    padding: 4rem 0;
    text-align: center;
}

.game-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.game-detail p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.game-image {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: auto ;
}

.game-image img {
    width: 100%;
    border-radius: 10px;
}


@media (max-width: 768px) {

    .hamburger
    {
        display: block;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        opacity: 80%;
        z-index: 5;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1.5rem 0;
    }
    .cta-button
    {
        margin-top: 10px;
    }
}
