/* Valdrionyx Social Casino - Modern Minimalist Blue Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0ea5e9;
    --secondary: #06b6d4;
    --accent: #3b82f6;
    --dark: #0f172a;
    --light: #f1f5f9;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #e0f2fe, #f1f5f9, #ffffff);
    color: var(--dark);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo::after {
    content: "●";
    color: var(--secondary);
    margin-left: 0.3rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 6rem 4rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.4rem;
    color: white;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
}

.game-display {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.game-frame {
    width: 100%;
    max-width: 100%;
    margin: 1.5rem auto 0;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.content-block {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.content-block p {
    margin-bottom: 1rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-block li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
}

.content-block li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.alert-box {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.alert-box h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.alert-box p {
    color: #475569;
    margin-bottom: 0.8rem;
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrapper p {
    margin: 0.5rem 0;
    color: #94a3b8;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verify.active {
    display: flex;
}

.age-verify-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-verify h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.age-verify p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.button-confirm {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.button-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.button-decline {
    background: #e2e8f0;
    color: var(--dark);
}

.button-decline:hover {
    background: #cbd5e1;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .banner {
        padding: 4rem 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .age-verify-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-verify-buttons {
        flex-direction: column;
    }
}
