:root {
    --primary-color: hsl(0, 0%, 100%);  
    --secondary-color: #000000;  
    --accent-color: #ffffff;  
    --text-color: #ffffff;  
    --card-bg: #080404;  
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background-image: url("polla/23.png");
   background-size: cover;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styling */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(193, 0, 231, 0);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 4px 6px rgba(0, 215, 243, 0);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-color);
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

.buy-now {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.buy-now:hover {
    transform: scale(1.05);
}
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("https://cdn.discordapp.com/attachments/1348103644372799531/1348897713844129843/79b1ae02-f440-4f65-8eff-fb9d52b65631.jpg?ex=67d12264&is=67cfd0e4&hm=75235aff086e9ddb2d2ad0039d12e50d8a2191123e2f7a9b24f269e73ac794bd&");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0 5%;
    filter: grayscale(50%); /* Keeps the grayscale effect */
    z-index: 1;
}

/* Color overlay */
#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.712); /* Adjust color and transparency */
    z-index: -1;
}

#hero h1 {
    font-size: 3.5rem;
    color: rgb(255, 255, 255);
    text-shadow: 0 4 10px rgb(255, 255, 255);
    margin-bottom: 15px;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;

    text-shadow: 0 4 10px rgb(255, 255, 255);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.primary, .secondary {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary:hover {
    background-color: rgba(255, 255, 255, 0.514);
}

/* Features Section */
#features {
    background-color: rgb(0, 0, 0);
    padding: 100px 5%;
    text-align: center;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.feature {
    max-width: 300px;
    padding: 30px;
    background-image: url("https://cdn.discordapp.com/attachments/1348103644372799531/1348897713844129843/79b1ae02-f440-4f65-8eff-fb9d52b65631.jpg?ex=67d12264&is=67cfd0e4&hm=75235aff086e9ddb2d2ad0039d12e50d8a2191123e2f7a9b24f269e73ac794bd&");
    background-size: 290px;
    filter: grayscale(50%);
    padding: 40px;
    border-radius: 15px;
    background-position: center;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.63);
  
    transition: transform 0.3s ease;
}
.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.712); /* Adjust color and transparency */
    z-index: -1;
}
.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.63);


}

/* Pricing Section */
#pricing {
    background-color: #111;
    padding: 100px 5%;
    text-align: center;
}

.price-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background-color:rgb(2, 2, 2);
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.63);
}

.price-card .price {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
}

.price-card ul li {
    margin: 10px 0;
    opacity: 0.8;
}

.price-card button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.price-card button:hover {
    transform: scale(1.05);
}

/* Games Section */
#games {
    background-color: var(--secondary-color);
    padding: 100px 5%;
    text-align: center;
}

.game-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.game {
    background-color: var(--card-bg);
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.game:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0);
    color: rgb(255, 255, 255);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.63);
}

/* Footer */
footer {
    background-color: var(--card-bg);
    color: var(--text-color);
    text-align: center;
    padding: 30px 5%;
}

.legal-links {
    margin-top: 15px;
}

.legal-links a {
    color: var(--text-color);
    margin: 0 10px;
    text-decoration: none;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-grid, .price-cards, .game-list {
        flex-direction: column;
        align-items: center;
    }

    .feature, .price-card, .game {
        width: 100%;
        margin-bottom: 20px;
    }

    header {
        flex-direction: column;
    }

    nav {
        margin-top: 20px;
    }
}

.social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid rgb(255, 255, 255);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
}
.social-links i:hover{
    transform: scale(1.3);
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    filter: drop-shadow(0 0 10px rgb(255, 255, 255));
}