:root {
    --bg-dark: #14141C;
    --bg-card: #1C1C29;
    --accent-blue: #3B6CDE;
    --text-white: #ffffff;
    --price-gold: #FFD700;
}


body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

.brand-font {
    font-family: 'StardewValley', cursive;
    letter-spacing: 0.5px;
}

.text-accent {
    color: var(--accent-blue) !important;
}

.bg-dark-custom {
    background-color: var(--bg-dark) !important;
}

.bg-darker {
    background-color: #0e0e14 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.form-control::placeholder {
    color: var(--text-white) !important;
    opacity: 1;
}

.navbar {
    background-color: rgba(20, 20, 28, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar .nav-link {
    color: var(--text-white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar .nav-link:hover {
    color: var(--accent-blue) !important;
    text-shadow: 0 0 10px var(--accent-blue);
}

.hero-games {
    position: relative;
    min-height: 70vh;
    background: url('https://wallpapers.com/images/hd/gaming-classic-collections-1920-x-1080-wallpaper-1h87p37crqw6tkqp.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-games .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(20, 20, 28, 0.85) 0%,
            rgba(20, 20, 28, 0.7) 50%,
            var(--bg-dark) 100%);
    z-index: 1;
}

.hero-games .container {
    position: relative;
    z-index: 2;
}

.popular-games-box {
    position: relative;
    border: 2px solid var(--accent-blue) !important;
    box-shadow: 0 0 20px rgba(59, 108, 222, 0.5), inset 0 0 15px rgba(59, 108, 222, 0.2);
    background-color: rgba(28, 28, 41, 0.8);
    margin-top: 50px;
    z-index: 10;
}

.popular-label-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    width: auto;
    text-align: center;
}

.popular-badge {
    background-color: var(--accent-blue) !important;
    color: white;
    padding: 8px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    white-space: nowrap;
    display: inline-block;
}

.neon-shadow {
    box-shadow: 0 0 20px var(--accent-blue);
}

.mt-2 {
    margin-top: 1rem !important;
}

.neon-border-blue {
    border: 2px solid var(--accent-blue) !important;
    box-shadow: 0 0 20px rgba(59, 108, 222, 0.5),
        inset 0 0 15px rgba(59, 108, 222, 0.2);
    background-color: rgba(28, 28, 41, 0.8);
}

.neon-shadow {
    background-color: var(--accent-blue) !important;
    box-shadow: 0 0 20px var(--accent-blue);
    border: none;
}

.game-card-vertical {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.game-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(59, 108, 222, 0.6);
    border-color: var(--accent-blue);
}

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

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

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top,
            rgba(20, 20, 28, 1) 0%,
            rgba(20, 20, 28, 0.7) 60%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-card-overlay h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-card-overlay .price {
    font-size: 1rem;
    margin: 5px 0;
}

.game-card-overlay .price span {
    color: var(--price-gold);
    font-weight: bold;
}

.platforms {
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    opacity: 0.8;
}

.btn-accent {
    background-color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    color: var(--text-white);
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(59, 108, 222, 0.5);
}

.btn-outline-accent {
    background-color: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--text-white);
    font-weight: bold;
}

.btn-outline-accent:hover {
    background-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-blue);
}

.py-section {
    padding: 5rem 0;
}

.py-section2 {
    padding: 5rem 0;
    background-color: #1C1C29 !important;
}

.perk-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    background: rgba(59, 108, 222, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px rgba(59, 108, 222, 0.2);
}

.trial-section {
    position: relative;
    background: linear-gradient(135deg, #1c1c29 0%, #14141c 100%);
    border-top: 1px solid rgba(59, 108, 222, 0.3);
    overflow: hidden;
}

.hex-badge {
    background-color: var(--accent-blue);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 50px rgba(59, 108, 222, 0.5);
}

.custom-footer {
    background-color: #0c0c0f;
    color: var(--text-white);
    padding: 80px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-description {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.5;
    max-width: 300px;
    margin-bottom: 25px;
}

.custom-footer h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: 'StardewValley', sans-serif;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-list li a:hover {
    color: var(--accent-blue);
    opacity: 1;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .popular-games-box {
        margin-top: 20px;
    }

    .hero-games {
        text-align: center;
    }

    .game-card-vertical img {
        height: 250px;
    }
}

.custom-footer {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 0 50px 0;
    font-family: 'StardewValley', sans-serif;
}

.footer-logo {
    max-width: 220px;
    height: auto;
}

.footer-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.4;
    max-width: 300px;
    margin-bottom: 20px;
}

.custom-footer h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: none;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .custom-footer {
        text-align: left;
        padding: 40px 20px;
    }

    .footer-description {
        max-width: 100%;
    }
}