/* ============================================= */
/* SITE 2: MODERN GRADIENT DARK WITH ORANGE */
/* ============================================= */
:root {
    --bg-dark: #0d0d0d;
    --bg-surface: #1c1c1c;
    --bg-card: #252525;
    --accent-orange: #ff8c42;
    --accent-orange-darker: #ff7420;
    --accent-orange-light: #ffaa6f;
    --text-primary: #f8f8f8;
    --text-secondary: #a8a8a8;
    --border-color: #333333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    padding-top: 75px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 2px;
}

section {
    padding: 5rem 0;
}

/* ============================================= */
/* HEADER */
/* ============================================= */
.site-header {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    backdrop-filter: blur(15px);
    padding: 1.25rem 0;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light)) 1;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    max-height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.desktop-nav {
    display: flex;
    gap: 1.25rem;
}

/* ============================================= */
/* MOBILE STICKY BUTTONS */
/* ============================================= */
.mobile-sticky-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    backdrop-filter: blur(15px);
    padding: 1rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light)) 1;
    z-index: 1001;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-nav .btn-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-sticky-nav .btn {
    flex: 1;
}

/* ============================================= */
/* BUTTONS */
/* ============================================= */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-darker) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-darker) 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

.btn-large {
    font-size: 1.35rem;
    padding: 1.1rem 3.5rem;
}

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background-image: 
        linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(255, 140, 66, 0.1) 50%, rgba(13, 13, 13, 0.9) 100%),
        url('https://images.unsplash.com/photo-1518991043280-1da61d8289f3?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 950px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.75rem;
    color: #fff;
    text-shadow: 0 4px 30px rgba(255, 140, 66, 0.6);
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ============================================= */
/* GAME CATEGORIES SECTION */
/* ============================================= */
.game-categories {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.category-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 140, 66, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 140, 66, 0.3);
    border-color: var(--accent-orange);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image {
    transform: scale(1.1);
}

.card-content {
    padding: 2.25rem;
    position: relative;
}

.card-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.card-link {
    font-family: var(--font-heading);
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--accent-orange-light);
    transform: translateX(5px);
}

/* ============================================= */
/* CONTENT SECTION */
/* ============================================= */
.content-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.text-container {
    max-width: 900px;
}

.text-container .section-title {
    margin-bottom: 3rem;
}

.text-container h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.text-container p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.content-image {
    border-radius: 20px;
    margin: 3.5rem 0;
    width: 100%;
    border: 3px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================= */
/* GAMES SECTION */
/* ============================================= */
.games-section {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
    border-color: var(--accent-orange);
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
    text-align: center;
}

.game-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.btn-small {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

/* ============================================= */
/* PAYMENT SECTION */
/* ============================================= */
.payment-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    align-items: center;
}

.payment-grid img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.payment-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--accent-orange);
}

/* ============================================= */
/* FOOTER */
/* ============================================= */
.site-footer {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-top: 4rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light)) 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
}

.footer-about .logo {
    margin-bottom: 1.75rem;
}

.footer-about .logo img {
    max-height: 42px;
    opacity: 0.85;
}

.footer-about p {
    line-height: 1.9;
}

.footer-links h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 2.25rem 0;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
        padding-bottom: 85px;
    }

    .hero {
        min-height: 85vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-sticky-nav {
        display: block;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .btn-large {
        font-size: 1.15rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .text-container h3 {
        font-size: 1.6rem;
    }
}