/* DCAS Generated CSS v2.0 - Unique Design for nyacasino2026.se */
/* Concept: Nyacasino får en fräsch coral-rosa och mint design som bryter mot traditionella casino-färger, med mjuka kurvor och lekfulla element för att skapa en välkomnande och modern spelupplevelse. */
/* Style: light | Vibe: playful */

:root {
    --color-primary: #FF6B87;
    --color-primary-light: #ff9eba;
    --color-primary-dark: #cc3854;
    --color-secondary: #4ECDC4;
    --color-secondary-light: #74f3ea;
    --color-bg: #FEFEFE;
    --color-text: #2D3748;
    --color-heading: #FF6B87;
    --color-link: #FF6B87;
    --color-text-light: #939dae;
    --color-border: #f9ffff;
    --color-card-bg: #ffffff;
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--color-link);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover { opacity: 0.8; }

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

/* Header - gradient style */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;    background: linear-gradient(135deg, #FF6B87 0%, #cc3854 100%);
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo img { height: 40px; width: auto; }

/* Smart logo parts for multi-part names */
.logo-text { display: inline-flex; align-items: baseline; }
.logo-main { /* inherits normal styling */ }
.logo-year {
    font-size: 0.6em;
    opacity: 0.85;
    font-weight: 600;
    margin-left: 0.1em;
    vertical-align: super;
    line-height: 1;
}
.logo-number {
    font-size: 0.75em;
    opacity: 0.9;
    font-weight: 600;
    margin-left: 0.05em;
    font-style: italic;
}

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

.main-nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active { color: white; }

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

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

/* Hero - wave style */
.hero {
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;    background: linear-gradient(180deg, #FF6B87 0%, #cc3854 100%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero with background image - stretch to cover */
.hero.with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero.with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
}

/* Buttons - pill style */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;    background: #4ECDC4;
    color: white;
}
.btn:hover {
    background: #74f3ea;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Main Content */
main {
    padding: 4rem 0;
    min-height: 60vh;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: var(--radius-sm);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Cards - glass style */
.card {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249,255,255,0.3);
}
.card:hover {
    background: rgba(255,255,255,0.85);
    transform: translateY(-4px);
}
.card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Features Section */
.features {
    background: var(--color-primary);
    color: white;
    padding: 5rem 0;
    margin: 3rem 0;
}

.features h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.features h2::after { background: white; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-item h4 {
    color: white;
    margin-bottom: 0.75rem;
}

.feature-item p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Lists & Tables */
ul, ol { margin: 1rem 0; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

th {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
}

tr:hover { background: #f9f9f9; }

/* Footer */
.site-footer {
    background: #b21e3a;
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-section ul { list-style: none; padding: 0; }

.footer-section a {
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 0.35rem 0;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-light); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        padding: 1rem;
        display: none;
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { display: block; padding: 0.875rem 1rem; }
    
    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 2rem; }
    
    .card-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
}

/* Print */
@media print {
    .site-header, .site-footer, .admin-bar { display: none; }
    body { font-size: 12pt; }
}
/* =====================================================
   VISUAL CONTENT ELEMENTS - v3.0
   ===================================================== */

/* Info Box - Tips and information */
.info-box {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.info-box h4 {
    color: #00838f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.info-box p { margin-bottom: 0; color: #00695c; }

/* Highlight Box - Important information */
.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #ff9800;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.highlight-box h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.highlight-box p { margin-bottom: 0; color: #bf360c; }

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    border-left: 4px solid #e91e63;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.warning-box h4 {
    color: #c2185b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.warning-box p { margin-bottom: 0; color: #880e4f; }

/* Success Box */
.success-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.success-box h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.success-box p { margin-bottom: 0; color: #1b5e20; }

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.stat-box {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}
.stat-box:hover { transform: translateY(-5px); }
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.feature-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}
.feature-card h4 {
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.pros, .cons {
    border-radius: var(--radius-md);
    padding: 1.5rem;
}
.pros {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
}
.cons {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #ef5350;
}
.pros h4 { color: #2e7d32; }
.cons h4 { color: #c62828; }
.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pros li, .cons li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}
.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}
.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef5350;
    font-weight: bold;
}

/* Bonus Box */
.bonus-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: white;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}
.bonus-box h3 { color: white; margin-bottom: 0.5rem; }
.bonus-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
}
.bonus-box .btn {
    background: white;
    color: var(--color-primary);
    margin-top: 1rem;
}

/* Quote Box */
.quote-box {
    background: var(--color-card-bg);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}
.quote-box cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Step Cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.step-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step-card h4 { margin-bottom: 0.5rem; }
.step-card p { color: var(--color-text-light); margin: 0; font-size: 0.9rem; }

/* Table Styling */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.styled-table thead {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}
.styled-table th, .styled-table td {
    padding: 1rem;
    text-align: left;
}
.styled-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.styled-table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
}
