/* PiratePots Casino - Main Stylesheet */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #8B0000 0%, #450000 50%, #000000 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.logo img {
    height: 40px;
    transition: transform 0.3s;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DC143C;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #DC143C;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    padding: 0.6rem 1.8rem;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #fff;
    color: #8B0000;
}

.btn-register {
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://customer-assets.emergentagent.com/job_static-game-hub-1/artifacts/divohiw3_piratepots.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(64, 224, 208, 0.2) 50%, transparent 60%),
                linear-gradient(-45deg, transparent 40%, rgba(255, 215, 0, 0.15) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { background-position: 200% 200%; }
    50% { background-position: 0% 0%; }
    100% { background-position: -200% -200%; }
}

.hero-form {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.hero-form h3 {
    color: #DC143C;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-form h2 {
    color: #000;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #DC143C;
}

.btn-continue {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

/* Content Section */
.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.game-card {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    border-color: #DC143C;
}

.game-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.game-card-info {
    padding: 1rem;
}

.game-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.game-card-provider {
    font-size: 0.8rem;
    color: #888;
}

/* SEO Content */
.seo-content {
    color: #888;
    line-height: 1.8;
    max-width: 1000px;
    margin: 4rem auto;
}

.seo-content h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.seo-content h2 {
    color: #DC143C;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.seo-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    max-width: 1000px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-form {
        padding: 2rem;
    }
    
    .hero-form h2 {
        font-size: 1.6rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2rem 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
