/* Global Styles */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --font-family: 'Outfit', sans-serif;
    --gradient-hero: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    --gradient-btn: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    /* Example warm gradient */
    background: linear-gradient(to right, #333333, #666666);
    /* Fallback */
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    /* Fresh blue/cyan */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
}

/* Abstract Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 154, 158, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(161, 140, 209, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.3);
}

.btn-store {
    background: white;
    color: var(--primary-color);
    border: 2px solid #eee;
    font-size: 0.9rem;
    padding: 10px 20px;
}

.btn-store:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.game-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.game-icon-img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.game-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.game-info p {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    color: #888;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}