:root {
    --bg: #0f172a;
    --card-bg: #1e293b;
    --accent: #38bdf8;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --success: #22c55e;
    --border: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px;
}

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

header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.nav-city {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    color: var(--text-dim);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.trust-box {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.1), rgba(34, 197, 94, 0.1));
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.trust-badge {
    background: var(--success);
    color: var(--bg);
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

section {
    scroll-margin-top: 80px;
}

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

.card {
    background: var(--card-bg);
    padding: 3.1rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.popular-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.card p,
li {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.contact-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--accent);
    margin-bottom: 5rem;
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method {
    display: block;
    font-size: 1.8rem;
    word-break: break-all;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    margin: 10px 0;
    transition: 0.2s;
}

.contact-method:hover {
    opacity: 0.8;
}

footer {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

.live-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.5);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- NAVIGERING GRUND --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: var(--bg) !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700 !important;
}

/* --- DROPDOWN MENY --- */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    list-style: none;
}

.dropdown-content li {
    padding: 0;
}

.dropdown-content a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
}

/* Visa dropdown vid hovring (Desktop) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- MOBILANPASSNING (Under 850px) --- */
.menu-toggle,
.menu-icon {
    display: none;
}

@media (max-width: 850px) {
    .nav-city-desktop {
        display: none;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
    }

    .menu-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-main);
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Dold utanför skärmen */
        width: 80%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    /* När checkboxen är ikryssad, visa menyn */
    .menu-toggle:checked~.nav-links {
        right: 0;
    }

    /* Hamburgar-animation till ett X */
    .menu-toggle:checked~.menu-icon span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle:checked~.menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked~.menu-icon span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-content {
        position: static;
        display: block;
        /* Alltid synlig i mobilmenyn */
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropbtn {
        color: var(--accent) !important;
        pointer-events: none;
    }
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.file-upload {
    background: rgba(56, 189, 248, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed var(--border);
}

.file-upload label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.submit-btn {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Styling för Dropdown (Select) */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: #1e293b;
    /* Samma mörka färg som dina kort */
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    /* Tar bort webbläsarens fula standardpil */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    /* Sätter en snygg vit pil till höger */
}

/* Fixar färgerna på själva alternativen i listan (för Chrome/Windows) */
.form-group select option {
    background-color: #1e293b;
    color: white;
}

.form-group select:focus {
    border-color: var(--accent);
    outline: none;
}

::file-selector-button {
    background: var(--card-bg);
    color: var(--accent);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.dropdown-content li a:hover {
    background: rgba(56, 189, 248, 0.1);
    /* Svagt ljusblått sken */
    padding-left: 25px;
    /* En liten "slide"-effekt inåt */
    transition: all 0.2s ease;
}

/* Pris-box Container */
.price-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    padding: 0 1rem;
}

.price-card {
    background: linear-gradient(145deg, #1e293b, #111827);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.15);
}

.price-tag {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
}

.price-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

.price-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blogg-specifik CSS */
.filter-btn {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    margin: 5px;
    transition: 0.3s;
    font-weight: 600;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.post-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-banner {
    background: linear-gradient(90deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid #ff4500;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.promo-icon {
    font-size: 3rem;
}

.promo-text h3 {
    margin: 0;
    color: #ff4500;
    font-size: 1.4rem;
}

.promo-text p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.promo-code {
    display: inline-block;
    background: #ff4500;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-family: monospace;
}

.promo-btn {
    background: #ff4500;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    .promo-btn {
        width: 100%;
    }
}

/* Footer Base */
.site-footer {
    background-color: #0b0f19; /* En djup, snygg mörkblå/svart som matchar gaming-temat */
    color: #9ca3af;
    padding: 4rem 0 2rem 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

/* Kolumn 1: Brand */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff0055; /* Byt till din accentfärg om du har en annan */
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.brand-info p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-city {
    font-weight: 600;
    color: #ffffff;
}

/* Kolumn 2: Länkar */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #38bdf8; /* Ljusblå hovring */
}

/* Kolumn 3: Socials & Kontakt */
.footer-socials p {
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon svg {
    transition: transform 0.2s ease;
}

.social-icon:hover svg {
    transform: scale(1.15);
}

/* Snygga hovringsfärger anpassade för varje plattform */
.social-icon.yt:hover { background: rgba(255, 0, 0, 0.1); color: #ff0000; border-color: rgba(255, 0, 0, 0.2); }
.social-icon.dc:hover { background: rgba(88, 101, 242, 0.1); color: #5865f2; border-color: rgba(88, 101, 242, 0.2); }
.social-icon.ig:hover { background: rgba(225, 48, 108, 0.1); color: #e1306c; border-color: rgba(225, 48, 108, 0.2); }
.social-icon.fb:hover { background: rgba(24, 119, 242, 0.1); color: #1877f2; border-color: rgba(24, 119, 242, 0.2); }
.social-icon.x:hover { background: rgba(255, 255, 255, 0.1); color: #ffffff; border-color: rgba(255, 255, 255, 0.2); }
.social-icon.th:hover { 
    background: rgba(255, 255, 255, 0.1); 
    color: #ffffff; 
    border-color: rgba(255, 255, 255, 0.2); 
}
.footer-contact a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 700;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 2rem 1.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
}