/* ============================================
   UNIQUE STYLES FOR beatslot-at.com
   Modern Danish Casino Guide Design
   ============================================ */

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

:root {
    /* Danish flag colors - Red and White */
    --danish-red: #C8102E;
    --danish-red-dark: #A00D25;
    --danish-red-light: #E01A3F;
    --danish-white: #FFFFFF;
    --primary-gradient-start: #C8102E;
    --primary-gradient-end: #E01A3F;
    --secondary-gradient-start: #A00D25;
    --secondary-gradient-end: #C8102E;
    --accent-color: #FFD700;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(200, 16, 46, 0.1);
    --shadow-hover: rgba(200, 16, 46, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(200, 16, 46, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 16, 46, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(200, 16, 46, 0.03) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.9;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    background: linear-gradient(135deg, var(--danish-red) 0%, var(--danish-red-light) 100%);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

.main-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: headerShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes headerShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-nav {
    padding: 0.85rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', 'Inter', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite;
    font-style: italic;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    }
}

.logo:hover {
    transform: scale(1.08);
    animation: logoGlow 1s ease-in-out infinite;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    width: 35px;
    height: 35px;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    top: 10px;
}

.menu-toggle span:nth-child(2) {
    top: 16px;
}

.menu-toggle span:nth-child(3) {
    top: 22px;
}

.menu-toggle.active span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    top: 16px;
    transform: rotate(-45deg);
}

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

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--danish-white);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--danish-red) 0%, var(--danish-red-light) 50%, var(--danish-red-dark) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: heroBackgroundMove 15s ease-in-out infinite;
}

@keyframes heroBackgroundMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.9;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.95;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-feature-icon {
    font-size: 1.5rem;
}

/* ============================================
   CASINOS SECTION
   ============================================ */

.casinos-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--danish-red), var(--danish-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--danish-red), var(--danish-red-light));
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.casino-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    animation: cardFadeIn 0.6s ease-out both;
}

.casino-card:nth-child(1) {
    animation-delay: 0.1s;
}

.casino-card:nth-child(2) {
    animation-delay: 0.2s;
}

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

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.casino-header {
    background: linear-gradient(135deg, var(--danish-red) 0%, var(--danish-red-light) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.casino-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: casinoHeaderShine 4s ease-in-out infinite;
}

@keyframes casinoHeaderShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.casino-logo-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.casino-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-info {
    flex: 1;
    color: #ffffff;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.casino-tagline {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.6rem;
}

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

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.casino-content {
    padding: 1.5rem;
}

.casino-bonus {
    background: linear-gradient(135deg, var(--secondary-gradient-start), var(--secondary-gradient-end));
    color: #ffffff;
    padding: 0.85rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    text-align: center;
}

.bonus-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.casino-features {
    margin-bottom: 1.25rem;
}

.casino-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.casino-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.payment-method {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-white);
    border-radius: 4px;
    color: var(--text-dark);
    font-weight: 500;
}

.casino-button {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--danish-red), var(--danish-red-light));
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.casino-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.casino-button:hover::before {
    left: 100%;
}

.casino-button:hover {
    background: linear-gradient(135deg, var(--danish-red-light), var(--danish-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.disclaimer-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

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

.disclaimer-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 0.9rem;
}

.disclaimer-content p strong {
    color: var(--text-dark);
}

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */

.responsible-gaming-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.responsible-gaming-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsible-gaming-content > p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.help-links {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-links li {
    padding: 0.85rem;
    margin-bottom: 0.6rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    font-size: 0.9rem;
}

.help-links li a {
    color: var(--danish-red);
    font-weight: 600;
    transition: var(--transition);
}

.help-links li a:hover {
    color: var(--danish-red-dark);
}

.responsible-gaming-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-gradient-start), var(--secondary-gradient-end));
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 2.5rem 0 1.25rem;
    margin-top: 3rem;
}

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

.footer-disclaimer-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-disclaimer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-disclaimer-text strong {
    color: #ffffff;
}

.footer-responsible-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-responsible-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-responsible-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-help-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.footer-help-list li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer-help-list li a {
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.footer-help-list li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-responsible-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.help-resources {
    margin: 2rem 0;
}

.help-resource-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--danish-red);
}

.help-resource-item h3 {
    color: var(--danish-red);
    margin-bottom: 0.75rem;
}

.help-resource-item p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-badge-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.age-restriction {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-gradient-start), var(--secondary-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   PAGE HERO (FOR POLICY PAGES)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--danish-red) 0%, var(--danish-red-light) 50%, var(--danish-red-dark) 100%);
    padding: 2.5rem 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pageHeroMove 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pageHeroMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(15px, -15px) scale(1.05);
    }
}

.page-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.page-meta {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   CONTENT SECTION (FOR POLICY PAGES)
   ============================================ */

.content-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

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

.content-article {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.content-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 0.85rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--danish-red), var(--danish-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-heading:first-child {
    margin-top: 0;
}

.content-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.content-article p {
    margin-bottom: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 0.9rem;
}

.content-list {
    margin: 1rem 0 1rem 2rem;
}

.content-list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-light);
}

.content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-link {
    color: var(--danish-red);
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--danish-red-dark);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    height: fit-content;
}

.contact-details {
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    margin-top: 1.5rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--danish-red), var(--danish-red-light));
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--danish-red-light), var(--danish-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--danish-red), var(--danish-red-light));
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 10px var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
        max-height: 400px;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .casinos-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0;
    }

    .casino-header {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .footer-badges {
        gap: 1rem;
    }

    .footer-badge-img {
        height: 30px;
    }
}

/* ============================================
   ACCESSIBILITY & ANIMATIONS
   ============================================ */

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

/* Focus styles for accessibility */
a:focus,
button:focus {

}

/* ============================================
   AGE VERIFICATION POPUP
   ============================================ */

.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.age-popup-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.age-popup-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    position: relative;
}

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

.age-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-gradient-start), var(--secondary-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.age-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.age-popup-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.age-popup-warning {
    font-size: 0.9rem;
    color: var(--secondary-gradient-start);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-gradient-start);
}

.age-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-popup-button {
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.age-popup-confirm {
    background: linear-gradient(135deg, var(--danish-red), var(--danish-red-light));
    color: #ffffff;
}

.age-popup-confirm:hover {
    background: linear-gradient(135deg, var(--danish-red-light), var(--danish-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.age-popup-deny {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.age-popup-deny:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .age-popup-content {
        padding: 2rem 1.5rem;
    }

    .age-popup-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .age-popup-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   CONTACT FORM SUCCESS POPUP
   ============================================ */

.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.contact-popup-overlay.hidden {
    display: none;
}

.contact-popup-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    position: relative;
}

.contact-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    line-height: 1;
}

.contact-popup-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.contact-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--danish-red), var(--danish-red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    animation: popupIconPulse 2s ease-in-out infinite;
}

@keyframes popupIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.contact-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-popup-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-popup-button {
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--danish-red), var(--danish-red-light));
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    width: 100%;
}

.contact-popup-button:hover {
    background: linear-gradient(135deg, var(--danish-red-light), var(--danish-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

@media (max-width: 480px) {
    .contact-popup-content {
        padding: 2rem 1.5rem;
    }

    .contact-popup-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .contact-popup-title {
        font-size: 1.5rem;
    }
}
