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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0E27;
    color: #FAFAFA;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.font-orbitron {
    font-family: 'Orbitron', monospace;
}

/* Color Classes */
.neon-blue { color: #00D4FF; }
.neon-pink { color: #FF006E; }
.neon-purple { color: #8B00FF; }
.neon-green { color: #00FF88; }
.neon-orange { color: #FF8500; }
.text-green { color: #00FF88; }
.text-pink { color: #FF006E; }
.text-purple { color: #8B00FF; }
.text-orange { color: #FF8500; }
.text-blue { color: #00D4FF; }
.text-white { color: #FFFFFF; }

/* Gradient Text Classes */
.text-gradient-blue-pink {
    background: linear-gradient(45deg, #00D4FF, #FF006E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple-pink {
    background: linear-gradient(45deg, #8B00FF, #FF006E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green-blue {
    background: linear-gradient(45deg, #00FF88, #00D4FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-orange-pink {
    background: linear-gradient(45deg, #FF8500, #FF006E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes glow {
    from { 
        text-shadow: 0 0 10px #00D4FF, 0 0 20px #00D4FF, 0 0 30px #00D4FF; 
    }
    to { 
        text-shadow: 0 0 20px #00D4FF, 0 0 30px #00D4FF, 0 0 40px #00D4FF; 
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 29, 41, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00D4FF, #8B00FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #00D4FF, #FF006E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-desktop button {
    background: none;
    border: none;
    color: #FAFAFA;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-desktop button:hover {
    color: #00D4FF;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #00D4FF;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.98);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 1rem;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu button {
    background: none;
    border: none;
    color: #FAFAFA;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 0;
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-menu button:hover {
    color: #00D4FF;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('#');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.8), rgba(10, 14, 39, 0.6), rgba(10, 14, 39, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #D1D5DB;
    font-weight: 300;
    line-height: 1.6;
}

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

.btn-neon {
    background: linear-gradient(45deg, #00D4FF, #8B00FF);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-neon:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid #00D4FF;
    background: transparent;
    color: #00D4FF;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline:hover {
    background: #00D4FF;
    color: #0A0E27;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.float-1 {
    top: 20%;
    left: 10%;
    width: 24px;
    height: 24px;
    background: #00FF88;
    animation: float 3s ease-in-out infinite;
}

.float-2 {
    top: 40%;
    right: 20%;
    width: 16px;
    height: 16px;
    background: #FF006E;
    animation: float 2s ease-in-out infinite;
    animation-delay: 1s;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    width: 32px;
    height: 32px;
    background: #8B00FF;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.float-4 {
    bottom: 40%;
    right: 10%;
    width: 20px;
    height: 20px;
    background: #FF8500;
    animation: float 2.5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Casino Section */
.casino-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1D29 50%, #0A0E27 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    max-width: 768px;
    margin: 0 auto;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-card {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.casino-card:hover {
    border-color: #00D4FF;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.casino-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.casino-info {
    flex: 1;
}

.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.kungaslottet-logo {
    background: linear-gradient(45deg, #1E40AF, #8B00FF);
}

.mrvegas-logo {
    background: linear-gradient(45deg, #FF006E, #FF8500);
}

.casino-name {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 2rem;
    color: #00D4FF;
    margin-bottom: 0.5rem;
}

.casino-description {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.casino-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.casino-cta {
    text-align: center;
    flex-shrink: 0;
}

.casino-rating {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 2.5rem;
    color: #00FF88;
    margin-bottom: 0.5rem;
}

.rating-label {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.age-restriction {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #1A1D29;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    text-align: left;
}

.about-paragraph {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 0 20px #00D4FF;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.6), transparent);
    border-radius: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1D29 50%, #0A0E27 100%);
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #00D4FF;
}

.faq-question h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: #00D4FF;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #D1D5DB;
    line-height: 1.6;
}

/* Responsible Gambling Section */
.responsible-section {
    padding: 5rem 0;
    background: #1A1D29;
}

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

.responsible-header {
    margin-bottom: 3rem;
}

.age-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(45deg, #FF8500, #FF006E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

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

.responsible-card {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.warning-list,
.tool-list {
    text-align: left;
    color: #D1D5DB;
    line-height: 1.8;
}

.warning-list li,
.tool-list li {
    margin-bottom: 0.5rem;
}

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

.support-card {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.support-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.spelinspektionen-icon {
    background: linear-gradient(45deg, #1E40AF, #8B00FF);
}

.stodlinjen-icon {
    background: linear-gradient(45deg, #00FF88, #00D4FF);
}

.support-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #8B00FF;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0A0E27 0%, #1A1D29 50%, #0A0E27 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

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

.social-links i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: #8B00FF;
}

.footer-title {
    font-weight: 600;
    font-size: 1.125rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links button,
.footer-links a {
    background: none;
    border: none;
    color: #D1D5DB;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links button:hover,
.footer-links a:hover {
    color: #00D4FF;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding-top: 2rem;
}

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

.copyright {
    color: #9CA3AF;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9CA3AF;
}

/* Legal Pages Styles */
.legal-page {
    min-height: 100vh;
    background: #0A0E27;
    color: #FAFAFA;
    padding-top: 100px;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.legal-header {
    margin-bottom: 2rem;
}

.back-btn {
    background: none;
    border: none;
    color: #00D4FF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.back-btn:hover {
    color: #8B00FF;
}

.legal-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
}

.legal-date {
    color: #D1D5DB;
    font-size: 1.125rem;
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-card {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
}

.legal-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-card p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-card ul {
    color: #D1D5DB;
    line-height: 1.8;
    margin-left: 1rem;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .casino-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .responsible-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .casino-advantages {
        grid-template-columns: 1fr;
    }
    
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .support-links {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}