:root {
    --primary: #6e45e2;
    --secondary: #88d3ce;
    --dark: #2b2b2b;
    --light: #f8f9fa;
    --accent: #ff6b6b;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
    line-height: 1.6;
}
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
    z-index: 1;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.logo span {
    color: var(--accent);
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--primary);
}
.cta-button {
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
    color: white;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.features {
    padding: 6rem 5%;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.portfolio {
    padding: 6rem 5%;
    background-color: #f9f9ff;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.game-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
}
.game-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}
.game-card:hover img {
    transform: scale(1.05);
}
.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}
.game-info h3 {
    margin: 0;
    font-size: 1.5rem;
}
.game-info p {
    opacity: 0.8;
    margin: 0.5rem 0 0;
}
.contact {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}
.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}
.form-group textarea {
    height: 150px;
}
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--accent);
}
.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    h1 {
        font-size: 2.5rem;
    }
}