/* CSS Variables for theming */
:root {
    --primary-gold: #ffc107;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-light: #e0e0e0;
    --text-muted: #888;
    --gradient-gold: linear-gradient(135deg, #ffc107, #ffab00);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
    scroll-behavior: smooth;
}

/* Typography */
.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Navigation */
.custom-navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
}

.brand-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a, #0a0a0a, #2a2a2a);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats .row {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-gold);
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 193, 7, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
}

.feature-card h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-dark);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 25%, #1a1a1a 50%, #333 75%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: statsBackground 15s ease infinite;
    opacity: 0.8;
}

@keyframes statsBackground {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.stats-card {
    background: rgba(26, 26, 26, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 193, 7, 0.2);
    position: relative;
    z-index: 2;
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

.stats-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stats-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rules Section */
.rules-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: var(--transition-smooth);
}

.rules-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-dark);
}

.rules-card h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    position: relative;
    padding-left: 2rem;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 193, 7, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--dark-bg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Download Section */
#download {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

#download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    animation: downloadGlow 12s ease-in-out infinite;
}

@keyframes downloadGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.download-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.download-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: var(--transition-smooth);
}

.download-step:hover::before {
    left: 100%;
}

.download-step:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    background: rgba(26, 26, 26, 0.95);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-bg);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    position: relative;
    z-index: 2;
}

.download-step h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.download-step p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.server-ip {
    background: rgba(5, 5, 5, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.server-ip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.server-ip code {
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    position: relative;
    z-index: 2;
}

.download-step .btn {
    margin-top: 1rem;
    min-width: 150px;
    position: relative;
    z-index: 2;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    top: 50%;
    transform: translateY(-50%);
    animation: lineFlow 3s ease-in-out infinite;
}

.connection-line.line-1 {
    left: 25%;
    width: 16.66%;
    animation-delay: 0s;
}

.connection-line.line-2 {
    left: 58.33%;
    width: 16.66%;
    animation-delay: 1.5s;
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scaleX(0.5); }
    50% { opacity: 1; transform: translateY(-50%) scaleX(1); }
}

/* IP Label */
.ip-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step number with icons */
.download-step .step-number i {
    font-size: 1.5rem;
}

/* Connect Section */
.connect-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0a0a0a 50%, #2a2a2a 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: connectBackground 15s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 60%);
    animation: connectGlow 8s ease-in-out infinite;
}

.connect-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg, transparent, rgba(255, 193, 7, 0.1), transparent, rgba(255, 193, 7, 0.05), transparent);
    animation: connectRotate 25s linear infinite;
    opacity: 0.6;
}

@keyframes connectBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes connectGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    33% { opacity: 0.6; transform: scale(1.1); }
    66% { opacity: 0.4; transform: scale(0.9); }
}

@keyframes connectRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ripple {
    to {
        transform: scale(8);
        opacity: 0;
    }
}

.connect-info {
    position: relative;
    z-index: 3;
    margin-bottom: 3rem;
}

.connect-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.connect-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 193, 7, 0.05), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.connect-item:hover::before {
    opacity: 1;
}

.connect-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.2);
}

.connect-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
}

.connect-item h5 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connect-item code {
    background: rgba(5, 5, 5, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-family: 'Orbitron', monospace;
    border: 1px solid rgba(255, 193, 7, 0.3);
    display: inline-block;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.connect-item a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    display: inline-block;
    margin-top: 0.5rem;
}

.connect-item a:hover {
    color: #ffab00;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 3;
    margin-top: 2rem;
}

.social-link {
    width: 70px;
    height: 70px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.8rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: var(--dark-bg);
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
    border-color: transparent;
}

.social-link:hover i {
    color: var(--dark-bg);
    transform: scale(1.1);
}

/* Specific social media hover effects */
.social-link:nth-child(1):hover { /* Discord */
    box-shadow: 0 15px 30px rgba(114, 137, 218, 0.4);
}

.social-link:nth-child(2):hover { /* YouTube */
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

.social-link:nth-child(3):hover { /* Instagram */
    box-shadow: 0 15px 30px rgba(193, 53, 132, 0.4);
}

.social-link:nth-child(4):hover { /* Facebook */
    box-shadow: 0 15px 30px rgba(24, 119, 242, 0.4);
}

.social-link:nth-child(5):hover { /* TikTok */
    box-shadow: 0 15px 30px rgba(255, 0, 80, 0.4);
}

/* Connect CTA */
.connect-cta {
    position: relative;
    z-index: 3;
}

.connect-cta h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Additional text styles for connect section */
.connect-item p.text-muted {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.7) !important;
    line-height: 1.4;
}

/* Server Status */
.server-status {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
    text-align: center;
    position: relative;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.status-online {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.status-development {
    background: linear-gradient(135deg, #ffc107, #ffab00);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.status-offline {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-online .status-dot {
    background: #fff;
}

.status-development .status-dot {
    background: #000;
}

.status-offline .status-dot {
    background: #fff;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.server-info {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.footer-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Buttons */
.btn-warning {
    background: var(--gradient-gold);
    border: none;
    color: var(--dark-bg);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    color: var(--dark-bg);
}

.btn-outline-warning {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-warning:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .download-step {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .server-ip {
        padding: 1rem;
    }
    
    .server-ip code {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .download-step,
    .rules-card {
        padding: 1.5rem;
    }
}

/* Loading and Performance */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth transitions for all interactive elements */
button, a, .card, .nav-link {
    transition: var(--transition-smooth);
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffab00;
}

/* Shop Section */
#shop {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

#shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.06) 0%, transparent 50%);
    animation: shopGlow 15s ease-in-out infinite;
}

@keyframes shopGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

.shop-card {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: var(--transition-smooth);
}

.shop-card:hover::before {
    left: 100%;
}

.shop-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    background: rgba(26, 26, 26, 1);
}

.shop-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.shop-header i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.shop-header h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-features {
    text-align: left;
    position: relative;
    z-index: 2;
}

.shop-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.shop-features .feature i {
    color: var(--primary-gold);
    font-size: 1rem;
    width: 16px;
}

.vip-bronze:hover {
    border-color: #cd7f32;
    box-shadow: 0 20px 40px rgba(205, 127, 50, 0.2);
}

.vip-silver:hover {
    border-color: #c0c0c0;
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.2);
}

.vip-gold:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.coins-pack:hover {
    border-color: #ffb347;
    box-shadow: 0 20px 40px rgba(255, 179, 71, 0.2);
}

.shop-cta {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.shop-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.payment-methods {
    position: relative;
    z-index: 2;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.payment-icons i:hover {
    color: var(--primary-gold);
    transform: scale(1.2);
}
