/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Prevent overscroll bounce and white background */
    overscroll-behavior: none;
    -webkit-overscroll-behavior: none;
    -moz-overscroll-behavior: none;
    -ms-overscroll-behavior: none;
}

:root {
    --primary-bg: rgba(255, 255, 255, 0.03);
    --secondary-bg: rgba(255, 255, 255, 0.05);
    --accent-color: #00ff88;
    --accent-glow: rgba(0, 255, 136, 0.3);
    --accent-bright: rgba(0, 255, 136, 0.6);
    --accent-subtle: rgba(0, 255, 136, 0.1);
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --backdrop-blur: 20px;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #1B2735 0%, #090A0F 100%);
    background: -webkit-linear-gradient(to bottom, #1B2735 0%, #090A0F 100%);
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    /* Prevent overscroll bounce on body */
    overscroll-behavior: none;
    -webkit-overscroll-behavior: none;
    -moz-overscroll-behavior: none;
    -ms-overscroll-behavior: none;
    margin: 0;
    padding: 0;
    position: relative;
    animation: bodyGlow 10s ease-in-out infinite alternate;
    -webkit-animation: bodyGlow 10s ease-in-out infinite alternate;
}

@keyframes bodyGlow {
    0% {
        background: linear-gradient(to bottom, #1B2735 0%, #090A0F 100%);
        background: -webkit-linear-gradient(to bottom, #1B2735 0%, #090A0F 100%);
    }
    100% {
        background: linear-gradient(to bottom, #1B2735 0%, #0a0b1a 100%);
        background: -webkit-linear-gradient(to bottom, #1B2735 0%, #0a0b1a 100%);
    }
}

@-webkit-keyframes bodyGlow {
    0% {
        background: -webkit-linear-gradient(to bottom, #1B2735 0%, #090A0F 100%);
    }
    100% {
        background: -webkit-linear-gradient(to bottom, #1B2735 0%, #0a0b1a 100%);
    }
}

/* Starry Night Background */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -3;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

.star.small {
    width: 2px;
    height: 2px;
    opacity: 0.8;
    animation-duration: 3s;
}

.star.medium {
    width: 3px;
    height: 3px;
    opacity: 0.9;
    animation-duration: 2.5s;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.star.large {
    width: 4px;
    height: 4px;
    opacity: 1;
    animation-duration: 4s;
    box-shadow: 0 0 8px rgba(255, 255, 255, 1);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Moon */
#moon {
    position: fixed;
    top: 8%;
    right: 12%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        #ffffff 0%, 
        #f8f8f8 40%, 
        #e8e8e8 80%, 
        #d0d0d0 100%);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1),
        inset -8px -8px 0 rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: -2;
    animation: moonGlow 8s ease-in-out infinite;
}

#moon::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 
        12px 8px 0 -2px rgba(0, 0, 0, 0.1),
        -5px 15px 0 -3px rgba(0, 0, 0, 0.08),
        8px -6px 0 -1px rgba(0, 0, 0, 0.12);
}

@keyframes moonGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(255, 255, 255, 0.1),
            inset -8px -8px 0 rgba(0, 0, 0, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 60px rgba(255, 255, 255, 0.15),
            inset -8px -8px 0 rgba(0, 0, 0, 0.1);
    }
}

/* Clouds */
#clouds-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    filter: blur(1px);
    -webkit-filter: blur(1px);
    animation: drift linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50px;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.cloud::before {
    width: 75px;
    height: 45px;
    top: -22px;
    left: 15px;
}

.cloud::after {
    width: 90px;
    height: 30px;
    top: -15px;
    right: 15px;
}

@keyframes drift {
    from {
        transform: translateX(-200px);
    }
    to {
        transform: translateX(calc(100vw + 200px));
    }
}

/* Glass Morphism Effect - Enhanced Webkit Support */
.glass-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    -moz-backdrop-filter: blur(30px) saturate(180%);
    -ms-backdrop-filter: blur(30px) saturate(180%);
    -o-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    background: -webkit-linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    background: -moz-linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    z-index: 1;
}

.glass-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.03) 100%);
    background: -webkit-linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.03) 100%);
    background: -moz-linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
}

.floating-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.12) 100%);
    background: -webkit-linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.12) 100%);
    background: -moz-linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: blur(40px) saturate(220%);
    -webkit-backdrop-filter: blur(40px) saturate(220%);
    -moz-backdrop-filter: blur(40px) saturate(220%);
    -ms-backdrop-filter: blur(40px) saturate(220%);
    -o-backdrop-filter: blur(40px) saturate(220%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    animation: navbarFloat 6s ease-in-out infinite;
    -webkit-animation: navbarFloat 6s ease-in-out infinite;
    -moz-animation: navbarFloat 6s ease-in-out infinite;
}

@keyframes navbarFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.navbar-brand i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.navbar-status {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.server-status-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.status-text {
    color: var(--text-secondary);
    font-weight: 500;
}

.player-count-mini {
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    background: var(--accent-glow);
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.8rem;
}

/* Main Content */
main {
    padding-top: 120px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    background: -webkit-linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    background: -moz-linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    background: -webkit-linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    background: -moz-linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
    -webkit-box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    -webkit-box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.server-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    position: relative;
}

.status-dot.online {
    animation: serverPulse 2s ease-in-out infinite;
}

.status-dot.online::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.4);
    transform: translate(-50%, -50%);
    animation: statusRing 2s ease-in-out infinite;
}

@keyframes serverPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

@keyframes statusRing {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0.6;
    }
    50% {
        width: 20px;
        height: 20px;
        opacity: 0.3;
    }
    100% {
        width: 30px;
        height: 30px;
        opacity: 0;
    }
}

.player-count,
.server-version {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

/* Section Styles */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Connect Section */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.connect-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.connect-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 16px var(--accent-subtle);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.connect-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--accent-bright);
}

.connect-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.server-info {
    text-align: left;
}

.info-item {
    margin-bottom: 20px;
}

.info-item label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.server-ip,
.server-port {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.server-ip:hover,
.server-port:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.server-ip i,
.server-port i {
    opacity: 0.6;
    transition: var(--transition);
}

.server-ip:hover i,
.server-port:hover i {
    opacity: 1;
    color: var(--accent-color);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.resource-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 8px 20px var(--accent-subtle);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-resource {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    background: -webkit-linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    background: -moz-linear-gradient(45deg, var(--accent-color), var(--accent-bright));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
}

.btn-resource:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--accent-glow);
    -webkit-box-shadow: 0 10px 25px var(--accent-glow);
}

/* About Section */
.about-container {
    padding: 60px;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature:hover i {
    transform: scale(1.2);
    color: var(--accent-bright);
}

.feature span {
    font-weight: 500;
    color: var(--text-primary);
}

/* Footer */
footer {
    margin: 60px 20px 20px;
    padding: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        top: 15px;
        width: calc(100% - 30px);
    }
    
    .floating-navbar {
        padding: 12px 20px;
    }
    
    .navbar-center {
        display: none;
    }
    
    .navbar-brand span {
        font-size: 0.9rem;
    }
    
    .server-status-mini {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .player-count-mini {
        font-size: 0.75rem;
        padding: 1px 4px;
    }
    
    main {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .connect-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .server-status {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content,
    .connect-card,
    .resource-card,
    .about-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .server-ip,
    .server-port {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
