/* Base Styles */
:root {
    /* These default values will be overridden by JavaScript */
    --primary-color: #22c55e;
    --primary-light: #4ade80;
    --primary-dark: #16a34a;
    --bg-dark: #111827;
    --bg-card: #1f2937;
    --bg-card-hover: #2d3748;
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
    --border-color: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

.text-accent {
    color: var(--primary-color);
}

.text-accent-light {
    color: var(--primary-light);
}

.accent-text {
    color: var(--primary-light);
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1.5rem 0;
}

.section-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header .divider {
    margin: 1.5rem auto;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background-color: rgba(31, 41, 55, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo a {
    display: inline-block;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--bg-card-hover);
    color: var(--primary-light);
}

.nav-link.active {
    background-color: var(--bg-card);
    color: var(--primary-color);
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-store:hover {
    background-color: var(--primary-dark);
    color: white;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu-button.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-button.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: var(--bg-card-hover);
    color: var(--primary-light);
}

.mobile-nav-link.store {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    opacity: 0.2;
    z-index: -1;
}

.floating-cubes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.cube {
    position: absolute;
    width: 8rem;
    height: 8rem;
    opacity: 0.1;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    transform: rotate(0deg);
    animation: float 5s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Player Counter Styles */
.player-count {
    display: inline-block;
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-count:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.player-count h3 {
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.player-count span {
    color: var(--primary-light);
    font-weight: 700;
    position: relative;
    display: inline-block;
    min-width: 2ch;
    text-align: center;
}

/* Loading state */
.player-count span.loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Count change animation */
.player-count span.count-changed {
    animation: countUpdate 0.8s ease;
}

@keyframes countUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: white; }
    100% { transform: scale(1); }
}

/* Add server status indicator */
.player-count h3::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 5px var(--primary-light);
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .player-count {
        padding: 0.75rem 1.5rem;
    }
    
    .player-count h3 {
        font-size: 1.1rem;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    margin-top: 2rem;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.scroll-down:hover {
    color: var(--primary-light);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--bg-card);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-shadow {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
    background-color: var(--bg-card-hover);
    border-radius: 0.5rem;
    z-index: 1;
}

.about-image img {
    position: relative;
    z-index: 2;
    border-radius: 0.5rem;
    border: 4px solid var(--border-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--bg-card-hover);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-light);
}

.feature-card p {
    color: var(--text-gray);
}

/* Join Section */
.join {
    padding: 5rem 0;
    background-color: var(--bg-card);
}

.join-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.join-steps {
    flex: 2;
}

.steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    background-color: var(--bg-card-hover);
    border-radius: 0.25rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.step:hover .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.step:hover .step-info h3 {
    color: var(--primary-light);
}

.step-info p {
    color: var(--text-gray);
}

.join-ui {
    flex: 1;
}

.minecraft-window {
    background-color: var(--bg-card-hover);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.window-header {
    background-color: var(--bg-dark);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.control {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.control.red {
    background-color: #ef4444;
}

.control.yellow {
    background-color: #f59e0b;
}

.control.green {
    background-color: #10b981;
}

.window-title {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.window-content {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.window-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.window-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.window-btn.cancel {
    background-color: var(--bg-dark);
    color: white;
}

.window-btn.cancel:hover {
    background-color: #374151;
}

.window-btn.done {
    background-color: var(--primary-color);
    color: white;
}

.window-btn.done:hover {
    background-color: var(--primary-dark);
}

/* Rules and FAQ Sections */
.rules, .faq {
    padding: 5rem 0;
}

.rules {
    background-color: var(--bg-dark);
}

.faq {
    background-color: var(--bg-card);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: var(--bg-card-hover);
}

.accordion-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.accordion-icon {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 1.25rem;
    max-height: 1000px;
    border-top: 1px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.1);
}

.accordion-content p {
    color: var(--text-gray);
}

/* Vote Section */
.vote {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.vote-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.vote-info {
    flex: 2;
}

.vote-info p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.vote-benefits {
    margin: 2rem 0;
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.vote-benefits h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vote-benefits ul {
    list-style: none;
}

.vote-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.vote-benefits .check {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.125rem;
}

.vote-image {
    flex: 1;
    position: relative;
}

.vote-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--bg-card-hover);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.1);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.contact-icon.twitter {
    color: #1da1f2;
}

.contact-icon.email {
    color: #ea4335;
}

.contact-icon.discord {
    color: #5865f2;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: var(--primary-light);
}

.contact-card p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-light);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-info {
    flex: 2;
    margin-right: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--bg-card);
    border-radius: 50%;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.discord:hover {
    background-color: #5865f2;
    color: white;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.social-link.youtube:hover {
    background-color: #ff0000;
    color: white;
}

.social-link.instagram:hover {
    background-color: #e1306c;
    color: white;
}

.social-link.tiktok:hover {
    background-color: #000000;
    color: white;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-around;
}

.footer-links-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-links-column ul {
    list-style: none;
}

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

.footer-links-column a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .join-content,
    .vote-content {
        flex-direction: column;
    }
    
    .about-image,
    .join-ui,
    .vote-image {
        margin-top: 2rem;
        max-width: 400px;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
}