/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Simplified palette */
    --primary-purple: #7C3AED;
    --secondary-purple: #9061F9;
    --dark-purple: #5B21B6;
    --darker-purple: #4C1D95;
    --black: #000000;
    --dark-gray: #0a0a0f;
    --medium-gray: #121218;
    --light-gray: #1a1a24;
    --white: #ffffff;
    --off-white: #a0a0a0;
    --accent-cyan: #00f5d4;

    /* Gradients - Simplified */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    --gradient-glow: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    --gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.02) 100%);

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px 0;
    --card-padding: 2rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 1.5rem;
    --line-height: 1.6;

    /* Effects - Reduced */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(124, 58, 237, 0.4);
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-gray);
    color: var(--white);
    line-height: var(--line-height);
    overflow-x: hidden;
    cursor: default;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-purple), var(--dark-purple));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-purple), var(--primary-purple));
}

/* Selection */
::selection {
    background: var(--primary-purple);
    color: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s ease-in-out infinite;
    margin-bottom: 2rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(124, 58, 237, 0.2);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, background 0.15s ease, width 0.15s ease, height 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor.active {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--secondary-purple);
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
}

/* Typing animation */
.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--primary-purple);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary-purple);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    animation: gradientShift 2s ease infinite;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll Progress */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.1s linear;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav__logo .logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

.nav__logo:hover .logo-img {
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.6));
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav__link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav__link:hover::before,
.nav__link.active::before {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--secondary-purple);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-gray);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Animated Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 25s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }

    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

/* Geometric Shapes Enhanced */
.geometric-shape {
    position: absolute;
    border: 2px solid rgba(124, 58, 237, 0.3);
    opacity: 0.5;
    animation: shapeFloat 15s infinite ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation-delay: 3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 15%;
    border-radius: 50%;
    animation-delay: 6s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 20%;
    border-radius: 48% 52% 30% 70% / 26% 45% 55% 74%;
    animation-delay: 9s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
        opacity: 0.7;
    }

    50% {
        transform: translate(-15px, 15px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translate(15px, 10px) rotate(270deg);
        opacity: 0.6;
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--secondary-purple);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero__title {
    font-size: var(--font-size-h1);
    margin-bottom: 1.5rem;
    font-weight: 900;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 1.35rem;
    color: var(--off-white);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 25px;
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTIONS BASE ===== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: var(--font-size-h2);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--off-white);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--off-white);
    opacity: 0.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    background-size: 300% 300%;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary-purple);
    box-shadow: 0 25px 80px rgba(124, 58, 237, 0.4);
}

.feature-card:hover::before {
    opacity: 0.05;
    animation: gradientShift 3s ease infinite;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow-strong);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-description {
    color: var(--off-white);
    opacity: 0.85;
    line-height: 1.7;
}

/* ===== SERVERS SECTION ===== */
.servers {
    background: var(--dark-gray);
    position: relative;
}

.servers::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.servers-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.server-card-enhanced {
    background: linear-gradient(145deg, rgba(21, 21, 32, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(124, 58, 237, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Simple border effect */
.server-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    background: linear-gradient(var(--medium-gray), var(--medium-gray)) padding-box,
        linear-gradient(135deg, var(--primary-purple), var(--dark-purple)) border-box;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.server-card-enhanced:hover::before {
    opacity: 1;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.server-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.server-card-enhanced__image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.server-card-enhanced__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.server-card-enhanced:hover .server-card-enhanced__image img {
    transform: scale(1.05);
}

.server-card-enhanced__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.server-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.6rem 1.2rem;
    background: rgba(124, 58, 237, 0.9);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 25px;
    z-index: 2;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.server-badge--dayz {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.95) 0%, rgba(160, 82, 45, 0.95) 100%);
}

.server-badge--minecraft {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.95) 0%, rgba(50, 205, 50, 0.95) 100%);
}

.server-badge--gta {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.95) 0%, rgba(255, 165, 0, 0.95) 100%);
}

/* ===== SERVER CARD CONTENT - DYNAMIC HEIGHT WITH STICKY FOOTER ===== */
.server-card-enhanced__content {
    padding: 1.5rem;
    padding-bottom: 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Preenche todo o espaço disponível do card */
    flex-grow: 1;
}

.server-card-enhanced__title {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== DESCRIÇÃO - TEXTO COMPLETO SEM CORTES ===== */
.server-card-enhanced__description {
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    /* Texto exibido completo - sem restrições de altura */
}

/* ===== FEATURES LIST - CONTEÚDO COMPLETO ===== */
.server-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    /* Sem restrições - lista completa visível */
}

.server-feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--off-white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.server-feature:hover {
    color: var(--white);
    transform: translateX(5px);
}

.server-feature svg {
    width: 22px;
    height: 22px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

/* ===== STATS BLOCK - EXPANDE PARA EMPURRAR BOTÃO ===== */
.server-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    min-height: 80px;
    /* CRÍTICO: flex-grow força este bloco a expandir e empurrar o botão para a base */
    flex-grow: 1;
    align-content: center;
}

.server-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.server-stat__value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-purple);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.server-stat__label {
    display: block;
    font-size: 0.85rem;
    color: var(--off-white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== DEVELOPMENT STATUS - EXPANDE IGUAL AO STATS ===== */
.server-stats--dev {
    grid-template-columns: 1fr;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    /* CRÍTICO: mesmo flex-grow que stats normal */
    flex-grow: 1;
}

.server-stats--dev .server-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.server-stats--dev .server-stat__value {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.server-stats--dev .server-stat__label {
    font-size: 1rem;
    text-transform: none;
    font-weight: 600;
    color: var(--off-white);
}

/* ===== CTA BUTTONS - STICKY FOOTER ===== */
.server-card-enhanced .btn {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    /* margin-top: auto não é mais necessário pois flex-grow no stats já empurra */
    /* Altura fixa uniforme para todos os botões */
    height: 52px;
    min-height: 52px;
    box-sizing: border-box;
}

/* Garante tamanho EXATO entre btn-primary e btn-secondary */
.server-card-enhanced .btn-primary,
.server-card-enhanced .btn-secondary {
    height: 52px;
    min-height: 52px;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision {
    background: var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(124, 58, 237, 0.1), transparent 30%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: var(--transition);
}

.mv-card:hover::after {
    opacity: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mv-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-purple);
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
}

.mv-card__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.mv-card:hover .mv-card__icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-strong);
}

.mv-card__icon svg {
    width: 45px;
    height: 45px;
}

.mv-card__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.mv-card__description {
    font-size: 1.15rem;
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--dark-gray);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: var(--transition);
    perspective: 1000px;
}

.team-member:hover {
    transform: translateY(-15px);
}

.team-member__avatar {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
}

.team-member__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(124, 58, 237, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.team-member:hover .team-member__avatar img {
    border-color: var(--primary-purple);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.7);
    transform: rotateY(10deg);
}

.team-member__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.team-member:hover .team-member__glow {
    opacity: 1;
    width: 140%;
    height: 140%;
    animation: pulse 2s infinite;
}

.team-member__name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 700;
}

.team-member__role {
    font-size: 0.95rem;
    color: var(--secondary-purple);
}

.team-member__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--off-white);
    opacity: 0.7;
    transition: var(--transition);
}

.team-member__social svg {
    color: var(--secondary-purple);
}

.team-member:hover .team-member__social {
    opacity: 1;
    color: var(--accent-cyan);
}

.team-member:hover .team-member__social svg {
    color: var(--accent-cyan);
}

/* Make team-member links not look like typical links */
a.team-member {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

a.team-member:hover {
    transform: translateY(-15px);
}

a.team-member * {
    pointer-events: none;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(124, 58, 237, 0.03);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1.15rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15), 0 0 30px rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-info__item:hover {
    border-color: var(--primary-purple);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.contact-info__icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

.contact-info__icon svg {
    width: 26px;
    height: 26px;
}

.contact-info__item h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info__item p {
    color: var(--off-white);
    opacity: 0.85;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 25px rgba(124, 58, 237, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-glow-strong);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

.footer-tagline {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 50%;
    color: var(--primary-purple);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
    border-color: transparent;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--off-white);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */

/* Large tablets and small desktops */
@media screen and (max-width: 1400px) {
    .servers-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-card {
        padding: 2.5rem;
    }
}

/* Tablets */
@media screen and (max-width: 968px) {
    :root {
        --font-size-h1: 2.8rem;
        --font-size-h2: 2.2rem;
        --font-size-h3: 1.5rem;
        --section-padding: 80px 0;
    }

    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 2rem 3rem;
        transition: var(--transition);
        border-left: 1px solid rgba(124, 58, 237, 0.2);
        z-index: 1001;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .nav__toggle {
        display: flex;
        z-index: 1002;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav__cta {
        margin-top: 2rem;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    /* Hide custom cursor on tablet/mobile */
    .cursor,
    .cursor-dot {
        display: none;
    }
}

/* Small tablets and large phones */
@media screen and (max-width: 768px) {
    :root {
        --font-size-h1: 2.4rem;
        --font-size-h2: 1.9rem;
        --font-size-h3: 1.3rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 70px;
        min-height: 100svh;
    }

    .hero__content {
        padding: 0 1rem;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero__content {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Geometric shapes - reduce on mobile */
    .geometric-shape {
        opacity: 0.3;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
    }

    .shape-3,
    .shape-4 {
        display: none;
    }

    /* Orbs - smaller on mobile */
    .orb-1 {
        width: 200px;
        height: 200px;
    }

    .orb-2 {
        width: 150px;
        height: 150px;
    }

    .orb-3 {
        display: none;
    }

    /* Server Cards */
    .servers-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .server-card-enhanced__image {
        height: 140px;
    }

    .server-card-enhanced__title {
        font-size: 1.5rem;
    }

    .server-card-enhanced__content {
        padding: 1.25rem;
    }

    .server-features {
        padding: 1rem;
    }

    .server-feature {
        font-size: 0.9rem;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-member__avatar {
        width: 120px;
        height: 120px;
    }

    .team-member__name {
        font-size: 1.1rem;
    }

    .team-member__role {
        font-size: 0.85rem;
    }

    .team-member__social {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    /* Features */
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    /* Mission/Vision */
    .mv-card {
        padding: 2rem 1.5rem;
    }

    .mv-card__icon {
        width: 70px;
        height: 70px;
    }

    .mv-card__icon svg {
        width: 35px;
        height: 35px;
    }

    .mv-card__title {
        font-size: 1.6rem;
    }

    .mv-card__description {
        font-size: 1rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info__item {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info__icon {
        width: 45px;
        height: 45px;
    }

    .contact-info__icon svg {
        width: 22px;
        height: 22px;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile phones */
@media screen and (max-width: 576px) {
    :root {
        --font-size-h1: 1.8rem;
        --font-size-h2: 1.5rem;
        --font-size-h3: 1.1rem;
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header */
    .nav {
        padding: 0.75rem 1rem;
    }

    .nav__logo .logo-img {
        height: 45px;
    }

    /* Hero */
    .hero__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Team - single column */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member__avatar {
        width: 130px;
        height: 130px;
    }

    .team-member__name {
        font-size: 1.2rem;
    }

    .team-member__social {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    /* Server Cards */
    .server-card-enhanced__title {
        font-size: 1.4rem;
    }

    .server-card-enhanced__description {
        font-size: 0.9rem;
    }

    .server-stats {
        padding: 1rem;
    }

    .server-stat__value {
        font-size: 1.3rem;
    }

    .server-stat__label {
        font-size: 0.75rem;
    }

    .server-card-enhanced .btn {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        height: 48px;
        min-height: 48px;
    }

    /* Contact */
    .contact-form {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .contact-form .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Buttons general */
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Extra small phones */
@media screen and (max-width: 380px) {
    :root {
        --font-size-h1: 1.6rem;
        --font-size-h2: 1.4rem;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__badge {
        font-size: 0.7rem;
    }

    .team-member__avatar {
        width: 110px;
        height: 110px;
    }

    .nav__logo .logo-img {
        height: 40px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}