/* Wrestling-themed custom styles */
:root {
    --primary-gold: #ffd700;
    --wrestling-red: #dc3545;
    --wrestling-blue: #0066cc;
    --dark-bg: #1a1a1a;
    --gradient-gold: linear-gradient(45deg, #ffd700, #ffed4e);
    --gradient-fire: linear-gradient(45deg, #ff6b6b, #ffd93d);
}

body {
    font-family: 'Russo One', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Wrestling-themed typography */
.wrestling-font {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></svg>') repeat;
    animation: sparkle 3s linear infinite;
}

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

/* Wrestling buttons */
.wrestling-btn {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wrestling-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.wrestling-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.wrestling-btn:hover::before {
    left: 100%;
}

/* Wrestling Ring Animation */
.wrestling-ring {
    position: relative;
    width: 300px;
    height: 300px;
    border: 5px solid var(--primary-gold);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,215,0,0.1), transparent);
}

.wrestling-crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-gold);
    animation: crown-glow 2s ease-in-out infinite alternate;
}

@keyframes crown-glow {
    0% { text-shadow: 0 0 10px var(--primary-gold); }
    100% { text-shadow: 0 0 20px var(--primary-gold), 0 0 30px var(--primary-gold); }
}

.pulse-animation {
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.1);
}

/* Trading Cards */
.trading-card {
    transition: transform 0.3s ease;
}

.trading-card:hover {
    transform: scale(1.05);
}

.trading-card .card {
    border: 3px solid var(--primary-gold);
    border-radius: 15px;
    overflow: hidden;
}

/* Slam Zone */
.slam-zone {
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-btn {
    animation: pulse-glow 1.5s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 30px rgba(220, 53, 69, 0.8);
        transform: scale(1.05);
    }
}

/* Slam animations */
.slam-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: slam-text 0.5s ease-out;
}

@keyframes slam-text {
    0% { 
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(-90deg);
    }
    100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.body-slam-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.8), transparent);
    animation: slam-explosion 1s ease-out forwards;
}

@keyframes slam-explosion {
    0% { 
        transform: scale(0);
        opacity: 1;
    }
    100% { 
        transform: scale(3);
        opacity: 0;
    }
}

/* Stats Cards */
.stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .wrestling-ring {
        width: 200px;
        height: 200px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wrestling-btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Navbar Enhancements */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Footer */
footer {
    border-top: 3px solid var(--primary-gold);
}

/* Scrollbar Styling */
::-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: #ffed4e;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
