/* Neon Casino Design - Greek Social Casino */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1a0a2e, #16213e);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Neon glow animations */
@keyframes neonGlow {
    0% { text-shadow: 0 0 5px #ff0080, 0 0 10px #ff0080, 0 0 20px #ff0080; }
    50% { text-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080, 0 0 40px #ff0080; }
    100% { text-shadow: 0 0 5px #ff0080, 0 0 10px #ff0080, 0 0 20px #ff0080; }
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 5px #00ff80, 0 0 10px #00ff80, 0 0 20px #00ff80; }
    50% { box-shadow: 0 0 10px #00ff80, 0 0 20px #00ff80, 0 0 40px #00ff80; }
    100% { box-shadow: 0 0 5px #00ff80, 0 0 10px #00ff80, 0 0 20px #00ff80; }
}

/* 18+ Banner */
.age-banner {
    background: linear-gradient(90deg, #ff0080, #8000ff);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: neonGlow 2s ease-in-out infinite alternate;
    border-bottom: 3px solid #ff0080;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    border-bottom: 2px solid #00ff80;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5em;
    font-weight: bold;
    color: #00ff80;
    text-shadow: 0 0 20px #00ff80;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
}

.nav-menu a:hover {
    color: #ff0080;
    border-color: #ff0080;
    text-shadow: 0 0 10px #ff0080;
}

/* Main content */
main {
    padding: 40px 0;
}

.hero-section {
    text-align: center;
    padding: 60px 0;
    background: radial-gradient(circle, rgba(255,0,128,0.1), rgba(0,255,128,0.1));
}

.hero-title {
    font-size: 3.5em;
    color: #00ff80;
    margin-bottom: 20px;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #ff0080;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #ff0080;
}

/* Games grid */
.games-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    color: #00ff80;
    margin-bottom: 50px;
    text-shadow: 0 0 20px #00ff80;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-card {
    background: linear-gradient(135deg, rgba(255,0,128,0.1), rgba(0,255,128,0.1));
    border: 2px solid #00ff80;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,0,128,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.game-card:hover::before {
    opacity: 1;
    animation: neonPulse 1s ease-in-out infinite;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #ff0080;
    box-shadow: 0 10px 30px rgba(255,0,128,0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.game-image:hover img {
    transform: scale(1.05);
}

.game-title {
    font-size: 1.3em;
    color: #00ff80;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00ff80;
}

.game-description {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.play-btn {
    background: linear-gradient(90deg, #ff0080, #8000ff);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255,0,128,0.5);
}

/* Game page iframe */
.game-iframe {
    width: 100%;
    height: 80vh;
    border: 3px solid #00ff80;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 0 30px rgba(0,255,128,0.3);
}

/* SEO content */
.seo-content {
    background: rgba(0,0,0,0.5);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #ff0080;
    margin: 40px 0;
    line-height: 1.8;
}

.seo-content h2 {
    color: #00ff80;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff80;
}

.seo-content p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #ff0080, #8000ff);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid #ffffff;
}

.disclaimer h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
    border-top: 2px solid #00ff80;
    text-align: center;
}

.footer-content {
    color: #cccccc;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #00ff80;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff0080;
    text-shadow: 0 0 10px #ff0080;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-content {
        padding: 30px 20px;
    }
    
    .game-iframe {
        height: 60vh;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a0a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff0080, #00ff80);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00ff80, #ff0080);
}
