/* FunPoints Arcade - Modern Unified Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a3e 30%, #2d1b69 60%, #4a1c4a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00ffff;
}

/* Warning Header */
.warning-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.warning-header p {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

/* Navigation */
nav {
    padding: 25px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 0.2;
}

.nav-links a:hover {
    color: #00ffff;
    transform: translateY(-2px);
}

/* Header Styles for Internal Pages */
header {
    padding: 30px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content .logo {
    font-size: 28px;
}

.back-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #00ffff;
    border-radius: 25px;
    background: rgba(0, 255, 255, 0.1);
}

.back-link:hover {
    color: #000;
    background: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300ffff" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="20" cy="20" r="0.5" fill="%23ff00ff" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="0.8" fill="%23ffff00" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="4s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 25s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: #e0e0e0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 400;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    background-size: 200% 200%;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: buttonGlow 3s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% { box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 15px 35px rgba(255, 0, 255, 0.4); }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5);
    color: #000;
    animation: gradientShift 1s ease-in-out infinite;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
}

.games h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 70px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.games h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 2px;
}

.games-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    flex: 0 0 calc(33.333% - 20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.2);
}

.game-preview {
    position: relative;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.game-overlay p {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.play-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.4);
    color: #000;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.features h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 70px;
    background: linear-gradient(45deg, #ffff00, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.testimonials h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 70px;
    background: linear-gradient(45deg, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid #00ffff;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #00ffff;
    opacity: 0.3;
    font-family: 'Orbitron', monospace;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.testimonial-author {
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
}

.about h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffff00, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.8;
}

.contact-info {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    color: #00ffff;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Internal Pages Styles */
main {
    padding: 80px 0;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title.terms {
    background: linear-gradient(45deg, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content h2 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 25px;
    margin-top: 40px;
    font-size: 1.5rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content.terms h2 {
    color: #ff00ff;
}

.content p {
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content ul {
    margin: 20px 0;
    padding-left: 35px;
}

.content li {
    margin-bottom: 12px;
    color: #e0e0e0;
    line-height: 1.6;
}

.highlight {
    color: #ffff00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.contact-info.privacy {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #00ffff;
}

.contact-info.terms {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(255, 0, 255, 0.05));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #ff00ff;
}

.important-notice {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Content container for internal pages */
.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, #ff00ff, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: #00ffff;
    transform: translateX(10px);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #00ffff;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff00ff;
}

/* Simple footer for internal pages */
.simple-footer {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-footer a {
    color: #00ffff;
    transition: color 0.3s ease;
}

.simple-footer a:hover {
    color: #ff00ff;
}

.footer-disclaimer {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
    padding: 40px 0;
    margin: 40px 0 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-text h3 {
    font-family: 'Orbitron', monospace;
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.disclaimer-text p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.gamble-aware {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamble-aware-logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.gamble-aware-logo:hover {
    transform: scale(1.05);
}

.footer-warning {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.footer-warning p {
    color: #ffaa44;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-warning .responsible-gaming {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-warning .responsible-gaming a {
    color: #ffaa44;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 170, 68, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 170, 68, 0.2);
}

.footer-warning .responsible-gaming a:hover {
    background: rgba(255, 170, 68, 0.2);
    color: #ffaa44;
    transform: translateY(-2px);
}

.warning-footer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    padding: 30px 0;
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.warning-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.warning-footer p {
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.responsible-gaming {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.responsible-gaming a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.responsible-gaming a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container, .content-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .game-card {
        flex: 0 0 calc(50% - 15px);
    }

    .games-slider {
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .disclaimer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .disclaimer-text {
        text-align: center;
    }

    .disclaimer-text p {
        text-align: left;
    }

    .footer-warning .responsible-gaming {
        flex-direction: column;
        gap: 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .content {
        padding: 30px 25px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .warning-header p {
        font-size: 12px;
        padding: 0 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .games h2, .features h2, .testimonials h2, .about h2 {
        font-size: 2.2rem;
    }

    .feature-card, .testimonial-card {
        padding: 30px;
    }

    .footer-content {
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .content {
        padding: 25px 20px;
    }

    .warning-header p {
        font-size: 11px;
    }

    .logo {
        font-size: 20px;
    }

    .game-card {
        flex: 0 0 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .disclaimer-content {
        padding: 0 10px;
    }

    .disclaimer-text h3 {
        font-size: 1.2rem;
    }

    .disclaimer-text p {
        font-size: 0.9rem;
    }

    .gamble-aware-logo {
        width: 100px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .games h2, .features h2, .testimonials h2, .about h2 {
        font-size: 1.8rem;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a3e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff00ff, #ffff00);
}

footer {
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 40px 0 20px;
    font-size: 0.95rem;
}

.footer-disclaimer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.footer-disclaimer h3 {
    color: #ff00ff;
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-disclaimer p {
    line-height: 1.6;
    color: #ccc;
}

.gamble-aware {
    margin-top: 20px;
}

.gamble-aware-logo {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.gamble-aware-logo:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}
