/* Danish Casino Theme - Responsive CSS */

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

:root {
    --danish-red: #C8102E;
    --white: #FFFFFF;
    --dark-blue: #003d82;
    --light-gray: #F5F5F5;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--danish-red);
    font-weight: 700;
    font-size: 1.5rem;
}

.danish-crown {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: var(--danish-red);
}

.brand-text {
    background: linear-gradient(45deg, var(--danish-red), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand {
    background: linear-gradient(45deg, var(--danish-red), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-motto {
    text-align: right;
}

.motto-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.motto-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.language-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--danish-red), #e91e63);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
}

.language-indicator i {
    font-size: 1rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-crown {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Casino Cards Section */
.casino-section {
    padding: 1rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--danish-red), var(--dark-blue));
    border-radius: 2px;
}

/* Casino Cards - Compact Single Row Design */
.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

.casino-card.compact {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.2s ease;
}

.casino-card.compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.casino-rank {
    background: linear-gradient(135deg, var(--danish-red), #e74c3c);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(200, 16, 46, 0.3);
}

.casino-logo {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    background: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #4a5568;
    margin-bottom: 0.5rem;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease;
    padding: 4px;
    border-radius: 3px;
}

.casino-logo img:hover {
    opacity: 0.9;
}

.logo-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--danish-red), #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.casino-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.casino-info {
    min-width: 200px;
}

.casino-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    font-size: 0.8rem;
    color: #ddd;
}

.stars i.fas {
    color: #ffc107;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
}

.casino-bonus {
    flex: 1;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 6px;
    border-left: 3px solid var(--danish-red);
}

.bonus-main {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}

.bonus-extra {
    font-size: 0.85rem;
    color: var(--danish-red);
    font-weight: 500;
}

.casino-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.play-btn {
    background: linear-gradient(135deg, var(--danish-red), #e74c3c);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(200, 16, 46, 0.25);
    white-space: nowrap;
}

.play-btn:hover {
    background: linear-gradient(135deg, #b91c3c, var(--danish-red));
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.35);
    color: white;
}

.play-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.play-btn:hover i {
    transform: translateX(2px);
}

.age-warning {
    background: #6c757d;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.casino-bonus-value {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.casino-bonus-sub {
    font-size: 0.85rem;
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 61, 130, 0.1);
    border-radius: 4px;
    display: inline-block;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 0.25rem;
}

.star-rating i {
    font-size: 0.9rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.star-rating i.fas {
    color: #ffc107;
}

.star-rating i.far {
    color: #ddd;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.casino-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-tag.best {
    background: var(--danish-red);
    color: var(--white);
}

.casino-tag.new {
    background: var(--dark-blue);
    color: var(--white);
}

.casino-tag.popular {
    background: #28a745;
    color: var(--white);
}

.casino-tag.custom {
    background: var(--dark-blue);
    color: var(--white);
}

.casino-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.casino-btn {
    background: linear-gradient(45deg, var(--danish-red), #e91e63);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.casino-disclaimer {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Loading States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-left: 4px solid var(--danish-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.error-icon {
    font-size: 3rem;
    color: var(--danish-red);
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.retry-btn {
    background: var(--danish-red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.retry-btn:hover {
    background: #a30d26;
}

/* Content Pages */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--danish-red);
    padding-bottom: 1rem;
}

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

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--danish-red);
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--danish-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--danish-red);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

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

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--danish-red);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.contact-info i {
    width: 20px;
    color: var(--danish-red);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content {
    flex: 1;
}

.copyright {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.disclaimer {
    color: var(--danish-red);
    font-weight: 500;
}

.disclaimer i {
    margin-right: 0.5rem;
}

/* Danish Flag */
.danish-flag {
    width: 60px;
    height: 40px;
}

.flag {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--danish-red);
    border-radius: 4px;
    overflow: hidden;
}

.flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: var(--white);
}

.flag::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Optimizations - Extra Compact */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .brand-logo {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .danish-crown {
        font-size: 1.3rem;
        margin-right: 0.3rem;
    }
    
    .navbar-info {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        margin-left: 1rem;
    }
    
    .language-indicator {
        display: none; /* Hide language indicator on mobile */
    }
    
    .site-motto {
        text-align: right;
        white-space: nowrap;
    }
    
    .motto-text {
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 0;
    }

    .motto-subtitle {
        display: none; /* Hide subtitle on mobile */
    }

    /* Main Content Mobile Compact */
    .main-content {
        padding: 1rem 0;
    }
    
    .casino-section {
        padding: 0.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-description {
        margin-bottom: 1.5rem;
    }

    /* Improved Mobile Casino Cards */
    .casino-card {
        margin: 0 10px;
        border-radius: 15px;
    }

    .casino-card-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
        text-align: left;
    }

    .casino-logo {
        width: 120px;
        height: 90px;
        margin: 0 auto 1rem auto;
        border-radius: 12px;
    }

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

    .casino-name {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .casino-bonus {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .casino-bonus-value {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .casino-bonus-sub {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        display: block;
        text-align: center;
        padding: 0.4rem 0.8rem;
    }

    .casino-rating {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .star-rating {
        margin-bottom: 0.25rem;
    }

    .rating-text {
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
    }

    .casino-tag {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .casino-actions {
        margin-top: 1rem;
        align-items: center;
    }

    .casino-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: unset;
        border-radius: 12px;
    }

    .casino-disclaimer {
        padding: 1rem;
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.4;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 10px;
    }

    .content-page {
        margin: 1rem;
        padding: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 8px;
    }
    
    .brand-logo {
        font-size: 1rem;
    }
    
    .danish-crown {
        font-size: 1.2rem;
        margin-right: 0.25rem;
    }
    
    .navbar-info {
        margin-left: 0.5rem;
    }
    
    .motto-text {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .casino-card-content {
        padding: 1rem;
    }

    .casino-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .content-page {
        margin: 0.5rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .casino-grid {
        gap: 0.8rem;
        margin: 0;
    }

    .casino-card {
        margin: 0 2px;
        border-radius: 12px;
    }

    .casino-card-content {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .casino-logo {
        width: 90px;
        height: 68px;
        margin: 0 auto 0.6rem auto;
    }

    .casino-name {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .casino-bonus {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .casino-bonus-value {
        font-size: 0.8rem;
    }

    .casino-bonus-sub {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .star {
        font-size: 0.85rem;
    }

    .rating-text {
        font-size: 0.75rem;
    }

    .casino-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .casino-disclaimer {
        padding: 0.7rem;
        font-size: 0.7rem;
    }

    .container {
        padding: 0 8px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Homepage Specific Styles */
.hero-flags {
    display: flex;
    justify-content: center;
}

.danish-flag {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.danish-flag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flag-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.casino-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

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

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--danish-red);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.responsible-gaming-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-content i {
    font-size: 1.5rem;
    color: #856404;
    margin-top: 0.25rem;
}

.notice-text h4 {
    color: #856404;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notice-text p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.notice-text a {
    color: var(--danish-red);
    text-decoration: none;
    font-weight: 500;
}

.notice-text a:hover {
    text-decoration: underline;
}

.supplementary-info {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-radius: var(--border-radius);
}

.supplementary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.supplementary-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.authority-logos-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.authority-logos-top a {
    display: inline-block;
    transition: var(--transition);
}

.authority-logos-top a:hover {
    transform: scale(1.1);
}

.authority-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    cursor: pointer;
}

.authority-logo:hover {
    opacity: 0.8;
}

.supplementary-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-section-header i {
    font-size: 1.5rem;
    color: #3498db;
    background: rgba(52, 152, 219, 0.2);
    padding: 0.8rem;
    border-radius: 50%;
    min-width: 45px;
    text-align: center;
}

.info-section-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #ecf0f1;
}

.info-section p {
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section a {
    color: #3498db;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

/* Homepage Mobile Responsive Styles */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }

    .supplementary-info {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .supplementary-header h3 {
        font-size: 1.5rem;
    }

    .authority-logos-top {
        gap: 1rem;
        justify-content: center;
    }

    .authority-logo {
        height: 40px;
    }

    .info-grid-supplementary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .info-section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .info-section-header h4 {
        font-size: 1.1rem;
    }

    .info-section p {
        font-size: 0.95rem;
    }

    .danish-flag {
        width: 50px;
        height: 33px;
    }
}

@media (max-width: 480px) {
    .danish-flag {
        width: 45px;
        height: 30px;
    }
}

/* Loading and Error States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.loading i {
    margin-right: 0.8rem;
    font-size: 1.5rem;
    color: var(--danish-red);
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.error-icon {
    margin-bottom: 1.5rem;
}

.error-icon i {
    font-size: 4rem;
    color: #e74c3c;
}

.error-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.error-details {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
}

/* Logo placeholder style */
.logo-placeholder {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, var(--danish-red), #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .loading {
        padding: 3rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .error-container {
        padding: 3rem 1.5rem;
    }
    
    .error-icon i {
        font-size: 3rem;
    }
    
    .error-text {
        font-size: 1.3rem;
    }
    
    .error-details {
        font-size: 1rem;
    }
    
    /* Compact Casino Cards Mobile */
    .casino-card.compact {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        text-align: center;
        position: relative;
    }
    
    .casino-rank {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        z-index: 10;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .casino-logo {
        width: 80px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .casino-main {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .casino-info {
        min-width: auto;
        text-align: center;
        width: 100%;
    }
    
    .casino-rating {
        justify-content: center;
    }
    
    .casino-bonus {
        width: 100%;
        text-align: center;
    }
    
    .casino-action {
        align-items: center;
        width: 100%;
    }
    
    .play-btn {
        width: 100%;
        justify-content: center;
    }
}

.logo-placeholder {
    width: 100px;
    height: 50px;
    font-size: 1.2rem;
    }

