:root {
    --bg-dark: #0E0E0E;
    --text-white: #FFFFFF;
    --accent-primary: #4FACFE;
    --accent-secondary: #2D5DA7;
    --text-light: #E0E6ED;
    --font-primary: 'Unbounded', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-primary);
    background-image: url('../img/noise.svg');
    background-size: 200px;
    background-repeat: repeat;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.location .icon-pin {
    width: 24px;
    height: 24px;
}

.city-name {
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
}

.socials img {
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease;
}

.socials img:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    padding-top: 15vh;
    padding-bottom: 50px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(79, 172, 254, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.6);
    color: #000;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

/* Hero Visual */
.hero-coin {
    max-width: 100%;
    filter: drop-shadow(0 0 40px rgba(79, 172, 254, 0.3));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

/* Trust Intro */
.trust-intro .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Benefits Card */
.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
}

.benefit-card img {
    height: 64px;
}

/* Locations Section */
.location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-5px);
}

.worldwide-notice {
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 15px;
}

.worldwide-notice strong {
    color: var(--accent-primary);
}


/* Quality Section */
.quality-section img {
    box-shadow: 0 10px 40px rgba(79, 172, 254, 0.2);
    transition: transform 0.3s ease;
}

.quality-section img:hover {
    transform: scale(1.02);
}

.feature-item {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item h5 {
    font-size: 1.5rem;
}

/* FAQ */
.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background: transparent;
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 20px 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-primary);
    background: transparent;
}

.accordion-button::after {
    filter: invert(1);
    background-size: 16px;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(0) sepia(1) saturate(5) hue-rotate(100deg);
}

.accordion-body {
    color: #aaa;
    padding-bottom: 20px;
    padding-top: 0;
    font-weight: 300;
}

/* Dropdown */
.dropdown-menu-dark {
    background-color: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 10px !important;
}

.dropdown-item {
    font-weight: 300;
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-primary);
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    filter: invert(1);
}

.dropdown-toggle {
    font-family: var(--font-primary);
    font-size: 14px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 12vh;
        text-align: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .logo img {
        height: 32px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .header .city-name {
        display: none;
    }
}