:root {
    --primary-color: #ff8c00;
    /* Neon Orange */
    --secondary-color: #ffffff;
    /* White accents */
    --bg-dark: #080808;
    /* Deep Black */
    --bg-darker: #000000;
    /* Pure Black */
    --text-light: #f0f0f0;
    --text-dim: #888;
    --skyfall-color: #ffffff;
    --alholding-color: #d4af37;
    --archangel-color: #ff3333;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 18px;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 70% 55%, 30% 60%, 15% 100%);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    /* Anchored at top-left (0,0) which matches JS mouse position */
    transform: translate(0, 0);
    transition: none;
    mix-blend-mode: normal;
    /* Orange glow around the arrow */
    filter: drop-shadow(0 0 2px var(--primary-color)) drop-shadow(0 0 8px var(--primary-color));
}

/* Hover state for cursor */


/* Hover effect */
a:hover~.cursor,
button:hover~.cursor,
.btn:hover~.cursor {
    background-color: var(--primary-color);
    transform: scale(0.9);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.logo {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.2));
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.btn-join {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
}

.btn-join:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -5%;
    /* Center the larger image */
    left: -5%;
    width: 110%;
    /* Make it larger for movement range */
    height: 110%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.7);
    /* Slightly darker for text readability */
    transition: transform 0.1s ease-out;
    /* Smooth movement */
    will-change: transform;
}

/* @keyframes zoomEffect moved to JS controlled interaction */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--bg-dark) 90%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.animate-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.glitch {
    position: relative;
    color: white;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

/* Glitch Animation */
.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--secondary-color);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--primary-color);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(10px, 9999px, 81px, 0);
    }

    20% {
        clip: rect(72px, 9999px, 13px, 0);
    }

    40% {
        clip: rect(35px, 9999px, 98px, 0);
    }

    60% {
        clip: rect(5px, 9999px, 46px, 0);
    }

    80% {
        clip: rect(62px, 9999px, 2px, 0);
    }

    100% {
        clip: rect(27px, 9999px, 53px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    20% {
        clip: rect(12px, 9999px, 5px, 0);
    }

    40% {
        clip: rect(87px, 9999px, 32px, 0);
    }

    60% {
        clip: rect(45px, 9999px, 66px, 0);
    }

    80% {
        clip: rect(33px, 9999px, 78px, 0);
    }

    100% {
        clip: rect(4px, 9999px, 9px, 0);
    }
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dim);
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
    cursor: none;
    /* Let custom cursor show */
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections General */
section {
    padding: 100px 50px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.2rem;
}

/* About Section */
#about {
    background: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--secondary-color);
}

.neon-frame {
    position: relative;
    padding: 10px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}

.neon-frame img {
    width: 100%;
    display: block;
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    filter: grayscale(0.5) contrast(1.2);
    transition: filter 0.3s;
}

.neon-frame:hover img {
    filter: grayscale(0) contrast(1);
}

/* Lore Section */
#lore {
    background: #0f0f0f;
    overflow: hidden;
}

.lore-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/roleverselogo.png') no-repeat center center;
    background-size: 50%;
    opacity: 0.05;
    z-index: 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.03);
    position: relative;
    border-left: 2px solid var(--primary-color);
    transition: transform 0.3s;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 2px solid var(--secondary-color);
}

.timeline-content:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Factions */
.factions-grid {
    display: grid;
    grid-template-areas:
        "archangel archangel"
        "skyfall alholding";
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .factions-grid {
        grid-template-areas:
            "archangel"
            "skyfall"
            "alholding";
    }
}

.faction-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.faction-icon {

    font-size: 3rem;
    margin-bottom: 20px;
}

.faction-card h3 {
    margin-bottom: 10px;
}

.faction-card ul {
    list-style: none;
    margin-top: 20px;
    color: var(--text-dim);
}

.skyfall:hover {
    border-color: var(--skyfall-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.skyfall .faction-icon {
    color: var(--skyfall-color);
}

.alholding:hover {
    border-color: var(--alholding-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.alholding .faction-icon {
    color: var(--alholding-color);
}

.archangel:hover {
    border-color: var(--archangel-color);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.2);
}

.archangel .faction-icon {
    color: var(--archangel-color);
}

/* Secret Faction Styling */
.secret-faction {
    background: repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 10px,
            rgba(20, 20, 20, 0.1) 10px,
            rgba(20, 20, 20, 0.1) 20px);
    border: 1px dashed rgba(255, 51, 51, 0.3);
}

.secret-faction:hover .glitch-text {
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.skyfall {
    grid-area: skyfall;
}

.alholding {
    grid-area: alholding;
}

.archangel {
    grid-area: archangel;
}

.secret-faction:hover .glitch-text::before,

.secret-faction:hover .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

.secret-faction:hover .glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff0000;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.secret-faction:hover .glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #0000ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    10% {
        transform: skew(-2deg);
    }

    20% {
        transform: skew(2deg);
    }

    30% {
        transform: skew(0deg);
    }

    40% {
        transform: skew(1deg);
    }

    50% {
        transform: skew(-1deg);
    }

    60% {
        transform: skew(0deg);
    }

    100% {
        transform: skew(0deg);
    }
}

.redacted-text {
    background: #000;
    color: #000;
    user-select: none;
    transition: all 0.5s;
    display: inline-block;
}

.secret-faction:hover .redacted-text {
    background: transparent;
    color: var(--text-dim);
}


/* Characters Section */
#characters {
    background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media (max-width: 1200px) {
    .characters-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


.character-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.1);
    border-color: var(--primary-color);
}

.char-img-container {
    height: 250px;
    /* Taller for visuals */
    background: #000;
    position: relative;
    overflow: hidden;
}

.char-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    transition: transform 0.5s;
}

/* We will assign placeholder images via style in JS or simple gradients for now */
.char-placeholder.wolf {
    background: linear-gradient(45deg, #000, #1a1a2e);
}

.char-placeholder.daniel {
    background: linear-gradient(45deg, #000, #2e1a1a);
}

.char-placeholder.enrique {
    background: linear-gradient(45deg, #000, #1a2e1a);
}

.char-placeholder.vincent {
    background: linear-gradient(45deg, #000, #2e2e1a);
}

.char-placeholder.ignazio {
    background: linear-gradient(45deg, #000, #1a1a4e);
    /* Dark Blue */
}


.character-card:hover .char-placeholder {
    transform: scale(1.1);
}

.char-info {
    padding: 20px;
}

.char-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.char-role {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.char-info p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 10px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Join / Application Section */
#join {
    background: url('../images/Gemini_Generated_Image_wygu1pwygu1pwygu.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Increase height for form */
    min-height: 100vh;
}

.join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker overlay for readability */
    z-index: 0;
}

.join-content {
    z-index: 1;
    width: 100%;
}

.form-wrapper {
    background: rgba(15, 15, 15, 0.95);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 247, 255, 0.15);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.12);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 50px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    opacity: 0.7;
}

.social-links a {
    color: var(--text-dim);
    font-size: 1.5rem;
    margin-left: 20px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
/* Gallery Placeholders */
.gta-placeholder {
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.gta-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }
}

/* Gallery */
#gallery {
    background: var(--bg-darker);
    padding-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* Character card img fix */
.char-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s;
}

.character-card:hover .char-img {
    transform: scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Server Status */
.server-status {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.status-indicator {
    width: 6px;
    height: 6px;
    background: #FFD700;
    /* Gold/Yellow */
    border-radius: 50%;
    box-shadow: 0 0 10px #FFD700;
    animation: status-pulse 2s infinite;
}

.status-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    /* Smaller font as requested by "white fontla yaz... developing tarzinda" - implies subtle technical look */
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes status-pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 5px #FFD700;
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 0 #FFD700;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 5px #FFD700;
    }
}

/* FAQ Page Specifics */
#faq-page {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 80vh;
    background: var(--bg-dark);
}

#faq-page .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsiveness Updates */
@media (max-width: 900px) {
    .server-status {
        position: static;
        transform: none;
        margin: 10px 0;
        justify-content: center;
        width: 100%;
        order: -1;
        /* Ensure it's top on mobile flex column */
    }

    nav {
        flex-direction: column;
        padding: 10px 0;
        align-items: center;
    }

    .logo {
        margin: 10px 0;
    }

    /* Ensure Header wraps content */
    header {
        height: auto;
        padding: 10px 0;
    }

    /* Adjust Hamburger position since nav is column now? */
    /* If nav is column, hamburger might need specific placement or navigation logic needs update. */
    /* Standard burger menus usually keep nav row and hide links. */
    /* If avoiding complex burger rewrites: */
    /* Let's keep Nav as ROW for logo/burger, and HIDE status on very small screens or make it tiny absolute. */
}

@media (max-width: 768px) {
    .server-status {
        display: none;
        /* Hide on mobile to prevent clutter as per UX best practices for "mobil uyumlu" unless critical */
        /* User said "mobil uyumlu olmalı birebir", implies desktop features should adapt. */
        /* I will show it but stacked or small. */
        display: flex;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 5px;
    }


}

/* FAQ Section */
#faq {
    background: var(--bg-dark);
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border-left: 2px solid var(--primary-color);
    padding: 25px;
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateX(10px);
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
    box-shadow: -5px 0 15px rgba(255, 140, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.faq-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}