/* ===== ENGSLOTS.COM - Video Slots UK - Main Stylesheet ===== */
/* Version: 1.0 | Theme: Modern Gaming Neon */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --clr-primary: #00d4ff;
    --clr-primary-dark: #00a8cc;
    --clr-secondary: #ff6b35;
    --clr-accent: #f7c948;
    --clr-purple: #9b59b6;
    --clr-success: #27ae60;
    --clr-warning: #f39c12;
    --clr-danger: #e74c3c;
    --clr-dark: #0d1117;
    --clr-darker: #080b0f;
    --clr-card: #161b22;
    --clr-card-hover: #1f2937;
    --clr-border: #30363d;
    --clr-text: #e6edf3;
    --clr-text-muted: #8b949e;
    --clr-white: #ffffff;
    --ff-primary: 'Outfit', sans-serif;
    --ff-heading: 'Space Grotesk', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(0,212,255,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1400px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--ff-primary);
    background: var(--clr-darker);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0,212,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255,107,53,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(155,89,182,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--clr-white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }

a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--clr-accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13,17,23,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-white);
}

.logo-text span {
    color: var(--clr-primary);
}

/* ===== NAVIGATION ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--clr-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--clr-primary);
}

/* ===== BURGER MENU ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--clr-white);
    border-radius: 3px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--clr-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transition: var(--transition);
        border-left: 1px solid var(--clr-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--clr-border);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 140px 20px 80px;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0,212,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255,107,53,0.1) 0%, transparent 40%);
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, -5%) rotate(5deg); }
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

@media (max-width: 800px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-dark);
    box-shadow: 0 4px 20px rgba(0,212,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,212,255,0.5);
    color: var(--clr-dark);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--clr-secondary), #e55a2b);
    color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(255,107,53,0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
    color: var(--clr-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background: var(--clr-primary);
    color: var(--clr-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-alt {
    background: var(--clr-dark);
}

/* ===== SLOT CARDS ===== */
.slots-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slot-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.slot-card:hover {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md), 0 0 20px rgba(0,212,255,0.1);
    transform: translateX(5px);
}

.slot-card-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.slot-card-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.slot-card-info p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.slot-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slot-meta span {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: var(--clr-darker);
    border-radius: 20px;
    color: var(--clr-primary);
}

@media (max-width: 700px) {
    .slot-card {
        grid-template-columns: 100px 1fr;
    }
    
    .slot-card .btn {
        grid-column: span 2;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .slot-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slot-card-img {
        width: 100%;
        height: 150px;
        margin: 0 auto;
    }
    
    .slot-meta {
        justify-content: center;
    }
    
    .slot-card .btn {
        grid-column: auto;
    }
}

/* ===== CASINO CARDS ===== */
.casinos-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.casino-card {
    display: grid;
    grid-template-columns: 100px 1fr 200px auto;
    gap: 25px;
    align-items: center;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition);
}

.casino-card:hover {
    border-color: var(--clr-accent);
    transform: scale(1.01);
}

.casino-card-img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    background: var(--clr-white);
    border-radius: var(--radius-sm);
    padding: 5px;
}

.casino-card-info h4 {
    margin-bottom: 0.3rem;
}

.casino-card-info p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.casino-bonus {
    text-align: center;
}

.casino-bonus .bonus-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-accent);
    display: block;
}

.casino-bonus .bonus-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

@media (max-width: 900px) {
    .casino-card {
        grid-template-columns: 80px 1fr;
    }
    
    .casino-bonus {
        text-align: left;
    }
    
    .casino-card .btn {
        grid-column: span 2;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .casino-card-img {
        margin: 0 auto;
    }
    
    .casino-bonus {
        text-align: center;
    }
    
    .casino-card .btn {
        grid-column: auto;
    }
}

/* ===== TABLES ===== */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.table-styled {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
}

.table-styled th,
.table-styled td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.table-styled th {
    background: var(--clr-darker);
    font-weight: 600;
    color: var(--clr-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-styled tr:hover td {
    background: var(--clr-card-hover);
}

.table-styled tr:last-child td {
    border-bottom: none;
}

@media (max-width: 600px) {
    .table-styled th,
    .table-styled td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* ===== INFO BOXES ===== */
.info-box {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 30px;
    margin: 2rem 0;
}

.info-box-warning {
    border-color: var(--clr-warning);
    background: rgba(243,156,18,0.1);
}

.info-box-success {
    border-color: var(--clr-success);
    background: rgba(39,174,96,0.1);
}

.info-box h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== CHECKLIST ===== */
.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--clr-border);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--clr-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 0.8rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--clr-white);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--clr-primary);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 25px;
    color: var(--clr-text-muted);
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 25px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    color: var(--clr-white);
}

.review-date {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.review-stars {
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.review-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== AUTHOR BOX ===== */
.author-box {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 3rem 0;
}

.author-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-primary);
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--clr-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-bio {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.last-updated {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

@media (max-width: 600px) {
    .author-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-img {
        margin: 0 auto;
    }
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(243,156,18,0.1));
    border: 1px solid var(--clr-warning);
    border-radius: var(--radius-md);
    padding: 25px;
    margin: 2rem 0;
}

.disclaimer h4 {
    color: var(--clr-warning);
    margin-bottom: 0.5rem;
}

.disclaimer p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-dark);
    border-top: 1px solid var(--clr-border);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-col h5 {
    color: var(--clr-white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.gambling-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.gambling-logos img {
    height: 30px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition);
}

.gambling-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== CONTENT PAGES ===== */
.page-header {
    padding: 140px 20px 60px;
    background: var(--clr-dark);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--clr-text-muted);
}

.breadcrumb span {
    color: var(--clr-primary);
}

.content-section {
    padding: 60px 20px;
}

.content-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrap h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clr-border);
}

.content-wrap h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-wrap ul,
.content-wrap ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--clr-text-muted);
}

.content-wrap li {
    margin-bottom: 0.5rem;
}

/* ===== 404 PAGE ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.error-content h1 {
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--clr-primary);
    text-shadow: 0 0 50px rgba(0,212,255,0.5);
}

.error-content h2 {
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

/* ===== UTILITIES ===== */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

.hidden { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .site-footer,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
