/* Casino Website Styles - Lightweight & SEO Optimized */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8f9fa;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    color: #3498db;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-size: 1rem;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23casino)"/></svg>');
    opacity: 0.1;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    display: block;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.nav-links a:active {
    transform: translateY(0);
    background: rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

header h1 {
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Styles */
section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Casino Review Cards */
.casino-review {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.8) 0%, rgba(44, 62, 80, 0.8) 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.casino-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.casino-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    flex-shrink: 0;
}

.casino-info {
    flex: 1;
}

.casino-info h3 {
    color: #ffd700;
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.payment-logo {
    width: 32px;
    height: 24px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px;
    transition: transform 0.2s ease;
}

.payment-logo:hover {
    transform: scale(1.1);
}

.casino-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.casino-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
}

.casino-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    border: 2px solid #ffd700;
}

.casino-btn.primary:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.casino-btn.secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.casino-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

/* New button styles for deal-btn */
.deal-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    border: 2px solid #ffd700;
}

.deal-btn:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.deal-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.5rem 0;
    color: #ecf0f1;
    position: relative;
    padding-left: 1.5rem;
}

ul li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 3px solid #ffd700;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-about {
    flex: 1;
    text-align: left;
}

.footer-languages {
    flex: 0 0 auto;
    text-align: right;
}

.footer-languages h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-align: right;
    font-size: 1rem;
    font-weight: 500;
}

.footer-languages ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.footer-languages ul li::before {
    content: '';
}

.footer-languages a {
    color: #ecf0f1;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.1rem 0;
}

.footer-languages a:hover {
    color: #ffd700;
    text-decoration: none;
}

.footer-about h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-copyright p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-disclaimer {
    text-align: center;
    padding: 1rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.footer-disclaimer p {
    color: #e74c3c;
    font-size: 0.9rem;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    margin: 1rem 0 2rem 0;
    padding: 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #ffd700;
    font-weight: bold;
}

.breadcrumb-link {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffed4e;
    text-decoration: underline;
}

.breadcrumb-item[aria-current="page"] {
    color: #ecf0f1;
    font-weight: 500;
}

/* Mobile First Responsive Design */
/* Base styles are mobile-first */

/* Tablet and up */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .main-nav {
        padding: 1rem 0;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .casino-review {
        flex-direction: row;
        align-items: center;
    }
    
    .casino-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .casino-info {
        margin-left: 1rem;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
    
    .header-content h1 {
        font-size: 3rem;
    }
    
    .casino-review {
        padding: 2rem;
    }
}

/* Legacy mobile styles for older browsers */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .casino-review {
        padding: 1rem;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .casino-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .casino-btn {
        min-width: auto;
        width: 100%;
    }
    
    .deal-btn {
        min-width: auto;
        width: 100%;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-about {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-languages {
        text-align: center;
    }
    
    .footer-languages h4 {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-languages ul {
        align-items: center;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .casino-review {
        padding: 0.8rem;
    }
    
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-links a {
        padding: 0.5rem;
        font-size: 1rem;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
}

/* SEO Optimizations */
.casino-review h3 {
    font-weight: 600;
}

section h2 {
    font-weight: 600;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .casino-review {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .footer {
        background: white;
        color: black;
    }
}
