:root {
    --primary-color: #2e0249;
    --secondary-color: #570a57;
    --accent-color: #a91079;
    --text-color: #f7f7f7;
    --hover-color: #8a0c61;
    --card-bg: rgba(87, 10, 87, 0.9);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: var(--text-color);
}

.navbar {
    background-color: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(169, 16, 121, 0.2) 0%, rgba(46, 2, 73, 0.4) 100%);
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(169, 16, 121, 0.3);
}

.game-card img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.price-tag {
    background-color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.features-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(169, 16, 121, 0.1) 0%, rgba(46, 2, 73, 0.1) 100%);
}

.feature-box {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--secondary-color);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(169, 16, 121, 0.3);
}

.feature-box i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.game-info {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    margin-top: 15px;
}

.game-tags {
    margin: 10px 0;
}

.game-tag {
    background: var(--accent-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 5px;
    display: inline-block;
}

.rating {
    color: #ffd700;
    margin: 10px 0;
}

footer {
    background-color: var(--primary-color);
    padding: 50px 0;
    position: relative;
}

.social-links i {
    font-size: 1.8rem;
    margin: 0 15px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: var(--accent-color);
}

.btn-custom {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: var(--hover-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 16, 121, 0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}


.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/cta.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(169, 16, 121, 0.3) 0%, rgba(46, 2, 73, 0.3) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ff6b6b, #a91079);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-feature {
    text-align: center;
    padding: 1rem;
    background: rgba(169, 16, 121, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    flex: 1;
    max-width: 200px;
}

.cta-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cta-feature h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.btn-cta {
    background: linear-gradient(45deg, #a91079, #570a57);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(169, 16, 121, 0.5);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #570a57, #a91079);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-cta:hover::before {
    left: 0;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 16, 121, 0.6);
    color: white;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s infinite ease-in-out;
}

.element-1 {
    top: 20%;
    left: 10%;
    font-size: 3rem;
}

.element-2 {
    top: 60%;
    right: 15%;
    font-size: 4rem;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.price-highlight {
    display: inline-block;
    background: rgba(169, 16, 121, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    color: #ffd700;
    font-weight: bold;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .cta-feature {
        max-width: 100%;
    }
}