* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1920&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
}

/* Toppmeny */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-icon-btn {
    background: #5865F2;
    color: white;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.discord-icon-btn:hover {
    background: #4752C4;
}

.login-btn {
    background: #0088ff;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #0066cc;
}

/* Hero Sektion */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.hero-logo {
    font-size: 45px;
    color: #00a2ff;
    margin-bottom: 15px;
    background: rgba(0, 162, 255, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(0, 162, 255, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 35px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn.primary {
    background: #0088ff;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.4);
}

.btn.primary:hover {
    background: #006fc4;
    transform: translateY(-2px);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* FAQ Sektion */
.faq-section {
    padding: 100px 20px 80px 20px;
    background: rgba(10, 10, 15, 0.92);
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.faq-tag, .news-tag {
    background: rgba(0, 136, 255, 0.15);
    color: #00a2ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 136, 255, 0.3);
}

.faq-container h2, .news-container h2 {
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0 10px 0;
    color: #fff;
}

.faq-desc, .news-desc {
    color: #9090a0;
    font-size: 14px;
    margin-bottom: 35px;
}

.faq-desc a {
    color: #00a2ff;
    text-decoration: underline;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

.faq-tab {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0c0;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-tab.active, .faq-tab:hover {
    background: #0088ff;
    color: white;
    border-color: #0088ff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.faq-item {
    background: rgba(20, 20, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 136, 255, 0.4);
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.faq-question i {
    color: #808090;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #b0b0c0;
    font-size: 14px;
    line-height: 1.5;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 0 20px 18px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #0088ff;
}

/* Nyheter Sektion */
.news-section {
    padding: 100px 20px 80px 20px;
    background: rgba(15, 15, 22, 0.95);
    display: flex;
    justify-content: center;
}

.news-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.news-card {
    background: rgba(20, 20, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    transition: border-color 0.3s;
}

.news-card:hover {
    border-color: rgba(0, 136, 255, 0.4);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.news-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.news-badge.server {
    background: rgba(0, 170, 100, 0.2);
    color: #00ffaa;
    border: 1px solid rgba(0, 170, 100, 0.4);
}

.news-badge.update {
    background: rgba(0, 136, 255, 0.2);
    color: #00a2ff;
    border: 1px solid rgba(0, 136, 255, 0.4);
}

.news-date {
    color: #707080;
    font-size: 13px;
}

.news-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.news-card p {
    color: #b0b0c0;
    font-size: 14px;
    line-height: 1.6;
}

/* Formulärsektion */
.form-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background: rgba(10, 10, 15, 0.98);
}

.form-card {
    background: rgba(20, 20, 30, 0.95);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #b0b0c0;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 14px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #0088ff;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #0088ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #006fc4;
}