:root {
    --brand-gold: #f8d44c;
    --brand-gold-strong: #ffcc00;
    --bg-0: #0a0a0a;
    --bg-1: #111111;
    --text-0: #f5f5f5;
    --text-1: #cfcfcf;
    --border-0: rgba(248, 212, 76, 0.18);
    --radius-s: 8px;
    --radius-m: 12px;
    --shadow-0: 0 6px 20px rgba(0,0,0,0.35);
}

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

html, body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-0) 0%, #1a1a1a 50%, var(--bg-0) 100%);
    color: var(--text-0);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    /* Performance optimizations */
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--brand-gold);
    color: #000;
    padding: 8px 12px;
    border-radius: var(--radius-s);
    z-index: 10000;
}
.skip-link:focus {
    left: 16px;
    top: 12px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease-in-out 1.5s forwards;
    pointer-events: none;
}

.loading-text {
    font-size: 2rem;
    color: #f8d44c;
    text-shadow: 0 0 20px #f8d44c;
    animation: pulse 1.5s infinite;
}

/* Navigation */
nav {
    background: rgba(34, 34, 34, 0.98);
    /* Removed backdrop-filter for better performance */
    padding: 15px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav.scrolled {
    background: rgba(17, 17, 17, 0.98);
    border-bottom-color: #f8d44c;
    box-shadow: 0 5px 20px rgba(248, 212, 76, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(248, 212, 76, 0.35));
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1);
}

/* Logo rotation animation */
@keyframes logoRotate {
    from {
        transform: scale(1.1) rotateY(0deg);
    }
    to {
        transform: scale(1.1) rotateY(360deg);
    }
}

.logo.rotating {
    animation: logoRotate 0.6s ease-in-out;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-strong));
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    text-shadow: 0 0 10px #f8d44c;
    transform: translateY(-2px);
}

/* Subtle styling for MERC link to make it distinct but not prominent */
.nav-links .merc-link {
    position: relative;
    margin-left: 25px !important;
    color: #e6c743 !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    opacity: 0.9;
    border-left: 2px solid rgba(248, 212, 76, 0.4);
    padding-left: 15px !important;
    transition: all 0.3s ease;
}

.nav-links .merc-link::before {
    background: linear-gradient(90deg, #e6c743, #f8d44c) !important;
}

.nav-links .merc-link:hover {
    color: #f8d44c !important;
    opacity: 1;
    border-left-color: #f8d44c;
    padding-left: 18px !important;
    transform: translateY(-1px) !important;
}

/* Active state for MERC link when on merch page */
.nav-links .merc-link.active {
    color: #f8d44c !important;
    opacity: 1;
    border-left-color: #f8d44c !important;
    border-left-width: 3px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f8d44c;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    background: url('../assets/images/clear_header.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Smaller hero section for merch page */
#merch-hero {
    height: 50vh;
    min-height: 400px;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeIn 2s ease-out 1s forwards;
}

.hero-title {
    font-family: 'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    font-weight: 900;
    color: #ffcc00;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 30px #f8d44c;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    color: #f8d44c;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, var(--brand-gold), var(--brand-gold-strong));
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(248, 212, 76, 0.4);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 212, 76, 0.6);
    background: linear-gradient(45deg, var(--brand-gold-strong), var(--brand-gold));
}

.cta-button:focus-visible {
    outline: 2px solid var(--brand-gold-strong);
    outline-offset: 2px;
}

/* Hero CTAs layout */
.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero Social Links */
.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.hero-social-links a {
    color: #f8d44c;
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 212, 76, 0.3);
}

.hero-social-links a:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(248, 212, 76, 0.1);
    border-color: #f8d44c;
    box-shadow: 0 10px 30px rgba(248, 212, 76, 0.3);
}

/* Stats Section */
.stats {
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.98) 0%, rgba(17, 17, 17, 0.95) 100%);
    padding: 80px 20px 60px 20px;
    text-align: center;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    /* Removed backdrop-filter for better performance */
    border-top: 1px solid rgba(248, 212, 76, 0.1);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(248, 212, 76, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: visible;
}

.stat-item:hover {
    transform: translateY(-15px);
    border-color: #f8d44c;
    box-shadow: 0 20px 50px rgba(248, 212, 76, 0.3);
}

.stat-details {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 160px;
    background: rgba(0, 0, 0, 0.85);
    color: #f8d44c;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-top: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;
    white-space: nowrap;
}

.stat-item:hover .stat-details {
    opacity: 0.9;
    visibility: visible;
    transform: translateX(-50%) translateY(3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-gold-strong);
    margin-bottom: 10px;
    text-shadow: 0 0 20px #f8d44c;
}

.stat-label {
    font-size: 1.1rem;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--brand-gold-strong);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

.about-text strong {
    color: #f8d44c;
    font-weight: 600;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(248, 212, 76, 0.2));
}
.about-image.portrait {
    border: 1px solid var(--border-0);
    background: radial-gradient(120% 120% at 50% 0%, rgba(248,212,76,0.08) 0%, rgba(255,255,255,0.02) 40%, rgba(255,255,255,0.0) 100%);
    padding: 8px;
}

.about-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(248, 212, 76, 0.3));
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.skill-tag {
    background: linear-gradient(45deg, #f8d44c, #ffcc00);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(248, 212, 76, 0.4);
}

/* Partnership Section */
.partnership {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
}

.partnership-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-text h2 {
    font-size: 2.5rem;
    color: var(--brand-gold-strong);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partnership-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

.current-partnerships {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(248, 212, 76, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.current-partnerships h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.partner-logos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.partner-logo:hover {
    transform: translateY(-2px);
}

.partnership-cta {
    margin-top: 40px;
    padding: 30px;
    background: rgba(248, 212, 76, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(248, 212, 76, 0.5);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.partnership-cta h3 {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.partnership-cta p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.partnership-btn {
    background: linear-gradient(45deg, #f8d44c, #ffcc00);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partnership-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 212, 76, 0.4);
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.partnership-stat {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(248, 212, 76, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.partnership-stat:hover {
    transform: translateY(-5px);
    border-color: #f8d44c;
    box-shadow: 0 10px 30px rgba(248, 212, 76, 0.2);
}

/* Unified card look */
.card, .content-card, .stat-item, .partnership-stat {
    border-radius: var(--radius-m);
    border: 1px solid var(--border-0);
    box-shadow: var(--shadow-0);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #ffcc00;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #f8d44c;
}

.stat-desc {
    color: #ddd;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.content {
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

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

.content h2 {
    font-size: 2.5rem;
    color: var(--brand-gold-strong);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.content-description {
    color: #ddd;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-description {
    color: #ddd;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(248, 212, 76, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.content-card:hover {
    transform: translateY(-10px);
    border-color: #f8d44c;
    box-shadow: 0 20px 40px rgba(248, 212, 76, 0.2);
}

.content-icon {
    font-size: 3rem;
    color: #f8d44c;
    margin-bottom: 20px;
}

.content-card h3 {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.content-card p {
    color: #ddd;
    line-height: 1.6;
}

.content-card .learn-more { 
    display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; 
    color: var(--brand-gold); font-weight: 700; text-decoration: none; 
}
.content-card .learn-more:hover { text-decoration: underline; }

/* Contact Section within Content */
.contact-section {
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--brand-gold-strong);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-section .social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.contact-section .social-links a {
    color: #f8d44c;
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 212, 76, 0.3);
}

.contact-section .social-links a:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(248, 212, 76, 0.1);
    border-color: #f8d44c;
    box-shadow: 0 10px 30px rgba(248, 212, 76, 0.3);
}

/* Specific brand colors for contact section social links */
.contact-section .social-links a[title="YouTube"]:hover {
    color: #ff0000;
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.contact-section .social-links a[title="Twitch"]:hover {
    color: #9146ff;
    border-color: #9146ff;
    background: rgba(145, 70, 255, 0.1);
    box-shadow: 0 10px 30px rgba(145, 70, 255, 0.3);
}

.contact-section .social-links a[title="Discord"]:hover {
    color: #5865f2;
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.contact-section .social-links a[title="Twitter"]:hover {
    color: #1da1f2;
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

/* Footer */
footer {
    background: rgba(17, 17, 17, 0.98);
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(248, 212, 76, 0.3);
    position: relative;
    z-index: 10;
}

.footer-info {
    max-width: 600px;
    margin: 0 auto;
}

.footer-info p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-info strong {
    color: var(--brand-gold);
    font-weight: 600;
}

.footer-social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social-links a {
    color: #f8d44c;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 212, 76, 0.3);
    text-decoration: none;
}

.footer-social-links a:hover {
    transform: scale(1.1) translateY(-3px);
    color: #ffcc00;
    background: rgba(248, 212, 76, 0.1);
    border-color: #f8d44c;
    box-shadow: 0 8px 25px rgba(248, 212, 76, 0.3);
    text-shadow: 0 0 8px rgba(248, 212, 76, 0.6);
}

/* Specific colors for each social platform */
.footer-social-links a[title="YouTube"]:hover {
    color: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.footer-social-links a[title="Twitch"]:hover {
    color: #9146ff;
    border-color: #9146ff;
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.3);
}

.footer-social-links a[title="Discord"]:hover {
    color: #5865f2;
    border-color: #5865f2;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.footer-social-links a[title="Twitter"]:hover {
    color: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

/* Animations */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
/* Reveal transition utility */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}


@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        padding: 0 15px;
    }
    .hero-ctas { gap: 10px; }
    .hero-ctas .cta-button { width: 100%; max-width: 320px; }
    .hero-ctas .btn-secondary { width: 100%; max-width: 320px; text-align: center; padding: 12px 20px; }
    
    .hero {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
        backdrop-filter: blur(10px);
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 30px;
        display: block;
        width: 200px;
        text-align: center;
        border: 1px solid rgba(248, 212, 76, 0.3);
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Mobile MERC link styling - subtle approach */
    .nav-links .merc-link {
        margin-left: 0 !important;
        margin-top: 25px !important;
        width: 180px !important;
        font-size: 1.1rem !important;
        padding: 15px 30px !important;
        border: 1px solid rgba(248, 212, 76, 0.4) !important;
        border-left: 3px solid rgba(248, 212, 76, 0.6) !important;
        background: rgba(248, 212, 76, 0.08) !important;
        color: #e6c743 !important;
        font-weight: 600 !important;
        opacity: 0.9;
    }
    
    .nav-links .merc-link.active {
        background: rgba(248, 212, 76, 0.15) !important;
        color: #f8d44c !important;
        border-left-color: #f8d44c !important;
        border-left-width: 4px !important;
        opacity: 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .partner-logos {
        justify-content: center;
    }

    .contact-section .social-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .contact-section .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .hero-social-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
        gap: 15px;
        max-width: calc(100vw - 30px);
        margin: 0 auto;
    }
    
    .stats {
        padding: 60px 15px 40px 15px;
        margin-top: -50px;
    }

    .stat-item {
        padding: 20px 15px;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-details {
        width: 120px;
        font-size: 0.7rem;
        padding: 5px 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }

    .footer-social-links {
        gap: 15px;
        margin-top: 12px;
    }
    
    .footer-social-links a {
        font-size: 1.3rem;
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .partnership-visual {
        padding: 0 15px;
    }
    
    /* Ensure no horizontal overflow */
    .hero, .stats, .about, .partnership, .discord-community-wrapper, .content {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: calc(100vw - 30px);
    }
    
    .stats-container, .about-content, .partnership-content, .discord-container, .content-container {
        max-width: calc(100vw - 30px);
        margin: 0 auto;
    }
    
    /* Discord Community Mobile Styles */
    .discord-community-wrapper {
        padding: 60px 15px;
    }
    
    .discord-header h2 {
        font-size: 2rem;
    }
    
    .discord-subtitle {
        font-size: 1rem;
    }
    
    .discord-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .discord-cta {
        padding: 30px 20px;
    }
    
    .discord-cta h3 {
        font-size: 1.3rem;
    }
    
    .discord-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Fix any text overflow */
    h1, h2, h3, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f8d44c, #ffcc00);
    z-index: 9999;
    transition: width 0.3s ease;
    will-change: width;
}

/* Performance optimizations - Only use will-change when actively animating */
.stat-item:hover, .content-card:hover, .partnership-stat:hover {
    will-change: transform;
}

.hero-content {
    will-change: transform, opacity;
}

/* Removed mouse glow and particle styles for performance */
/* These were causing unnecessary DOM manipulation */

/* Warhogy stylish glow effect */
.warhogy-text {
    position: relative;
    cursor: pointer;
    display: inline-block;
    transition: all 0.4s ease;
    color: inherit;
}

/* Discord Community Section */
.discord-community-wrapper {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.discord-container {
    max-width: 1200px;
    margin: 0 auto;
}

.discord-header {
    text-align: center;
    margin-bottom: 60px;
}

.discord-icon {
    font-size: 3.5rem;
    color: #5865F2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.discord-header h2 {
    font-size: 2.5rem;
    color: var(--brand-gold-strong);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discord-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.discord-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(248, 212, 76, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #f8d44c;
    box-shadow: 0 15px 40px rgba(248, 212, 76, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-card p {
    color: #ddd;
    line-height: 1.6;
    font-size: 1rem;
}

.discord-cta {
    text-align: center;
    padding: 40px 30px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.discord-cta h3 {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.discord-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
}

.discord-btn {
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.4);
    background: linear-gradient(45deg, #4752C4, #5865F2);
}

.discord-btn i {
    font-size: 1.2rem;
}

.discord-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
}

/* Animation triggers */
.discord-community-wrapper.animate .benefit-card,
.discord-community-wrapper.animate .discord-cta {
    opacity: 1;
    transform: translateY(0);
}

.discord-community-wrapper.animate .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.discord-community-wrapper.animate .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.discord-community-wrapper.animate .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.discord-community-wrapper.animate .discord-cta { transition-delay: 0.4s; }

/* Featured Videos Section */
.featured {
    background: linear-gradient(180deg, rgba(26,26,26,0.95) 0%, rgba(17,17,17,0.98) 100%);
    padding: 100px 20px;
}
.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}
.featured h2 {
    font-size: 2.5rem;
    color: var(--brand-gold-strong);
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-0);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-0);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    cursor: pointer;
}
.product-card:hover { transform: translateY(-4px) scale(1.01); border-color: rgba(248,212,76,0.35); box-shadow: 0 12px 30px rgba(248,212,76,0.18); }
.product-image { display:block; width:100%; aspect-ratio: 1 / 1; object-fit: cover; background:#222; }
.product-content { padding: 14px; }
.product-title { color: var(--text-0); font-weight: 700; margin-bottom: 6px; font-size: 1rem; }
.product-price { color: var(--brand-gold); font-weight: 800; }
.video-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-0);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-0);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}
.video-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: #222;
    object-fit: cover;
}
.video-content {
    padding: 16px;
}
.video-title { color: var(--text-0); font-weight: 700; margin-bottom: 6px; }
.video-meta { color: var(--text-1); font-size: .9rem; margin-bottom: 12px; }
.video-actions { display: flex; gap: 8px; }
.btn-secondary { 
    background: transparent; 
    color: var(--brand-gold); 
    border: 1px solid var(--border-0); 
    border-radius: 999px; 
    padding: 10px 16px; 
    font-weight: 700; 
    transition: background .18s ease, border-color .18s ease;
}
.btn-secondary:hover { background: rgba(248,212,76,0.08); border-color: rgba(248,212,76,0.35); }

/* Featured Merch description spacing */
.featured .content-description {
    margin: 0 auto 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .featured { padding: 80px 15px; }
}

/* Disable body scroll when mobile nav is open */
body.nav-open { overflow: hidden; }

/* Nav active state */
.nav-links a.active { color: var(--brand-gold-strong); }

.warhogy-text:hover {
    color: #f8d44c;
    text-shadow: 
        0 0 10px rgba(248, 212, 76, 0.8),
        0 0 20px rgba(248, 212, 76, 0.6),
        0 0 30px rgba(248, 212, 76, 0.4),
        0 0 40px rgba(248, 212, 76, 0.2);
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, rgba(17,17,17,0.98) 0%, rgba(10,10,10,0.98) 100%);
    padding: 80px 20px;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials h2 {
    font-size: 2rem;
    color: var(--brand-gold-strong);
    text-align: center;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-0);
    border-radius: var(--radius-m);
    padding: 16px 18px;
    box-shadow: var(--shadow-0);
}
.testimonial-quote { color: var(--text-0); line-height: 1.6; }
.testimonial-author {
    color: rgba(207, 207, 207, 0.7);
    margin-top: 6px;
    font-weight: 500;
    font-size: 0.8rem;
}
.testimonial-quote { font-size: 0.98rem; }
.testimonial-inline { color: var(--text-0); line-height: 1.6; font-size: 1rem; }
.testimonial-inline q { quotes: "\201C" "\201D" "\2018" "\2019"; font-style: italic; }
.testimonial-inline q::before { content: open-quote; }
.testimonial-inline q::after { content: close-quote; }
.testimonial-inline .testimonial-author { margin-left: 10px; color: rgba(207,207,207,0.7); font-weight: 500; font-size: 0.8rem; }

/* Blend testimonials when used under Content section */
.content .testimonials { background: transparent; padding: 40px 0 0; }
.content .testimonials-container { max-width: 100%; margin: 0; padding: 0; }
.content .testimonials h2 { margin-bottom: 16px; font-size: 1.8rem; }
.content .testimonials-grid { gap: 12px; }

/* Special styling for loading screen Warhogy */
.loading-text .warhogy-text {
    color: #ffffff;
}

.loading-text .warhogy-text:hover {
    color: #f8d44c;
}

/* Merchandise Section Styling */
.merch-section {
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.98) 0%, rgba(17, 17, 17, 0.95) 100%);
    padding: 80px 20px 120px 20px;
    min-height: 80vh;
}

.merch-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.shopify-collection-wrapper {
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(248, 212, 76, 0.1);
    backdrop-filter: blur(10px);
}

/* Shopify Collection Professional Styling */
.shopify-buy__collection {
    background: transparent !important;
}

.shopify-buy__product {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(248, 212, 76, 0.2) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    margin: 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.shopify-buy__product:hover {
    transform: translateY(-8px) !important;
    border-color: #f8d44c !important;
    box-shadow: 0 15px 30px rgba(248, 212, 76, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.shopify-buy__product-title {
    color: #f8d44c !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
    text-shadow: 0 0 5px rgba(248, 212, 76, 0.3) !important;
}

.shopify-buy__product-price {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 15px 0 !important;
}

.shopify-buy__product-img {
    border-radius: 10px !important;
    transition: transform 0.3s ease !important;
}

.shopify-buy__product:hover .shopify-buy__product-img {
    transform: scale(1.05) !important;
}

.shopify-buy__btn {
    background: linear-gradient(45deg, #f8d44c, #ffcc00) !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(248, 212, 76, 0.4) !important;
}

.shopify-buy__btn:hover {
    background: linear-gradient(45deg, #ffcc00, #f8d44c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(248, 212, 76, 0.6) !important;
}

.shopify-buy__btn:active {
    transform: translateY(0) !important;
}

/* Cart Styling */
.shopify-buy__cart {
    background: rgba(0, 0, 0, 0.95) !important;
    border: 1px solid rgba(248, 212, 76, 0.3) !important;
    border-radius: 15px !important;
    backdrop-filter: blur(20px) !important;
}

.shopify-buy__cart-header {
    background: rgba(248, 212, 76, 0.1) !important;
    border-bottom: 1px solid rgba(248, 212, 76, 0.2) !important;
}

.shopify-buy__cart-title {
    color: #f8d44c !important;
    font-weight: 600 !important;
}

.shopify-buy__cart-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 15px !important;
}

.shopify-buy__cart-item-title {
    color: #ffffff !important;
}

.shopify-buy__cart-item-price {
    color: #f8d44c !important;
    font-weight: 600 !important;
}

.shopify-buy__cart-checkout-button {
    background: linear-gradient(45deg, #f8d44c, #ffcc00) !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 30px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    width: 100% !important;
    margin-top: 15px !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__cart-checkout-button:hover {
    background: linear-gradient(45deg, #ffcc00, #f8d44c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(248, 212, 76, 0.6) !important;
}

/* Cart Toggle Button */
.shopify-buy__cart-toggle {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 1000 !important;
    background: linear-gradient(45deg, #f8d44c, #ffcc00) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    box-shadow: 0 5px 20px rgba(248, 212, 76, 0.5) !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__cart-toggle:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(248, 212, 76, 0.7) !important;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .shopify-collection-wrapper {
        margin-top: 40px;
        padding: 20px 10px;
    }
    
    .shopify-buy__product {
        margin: 10px 5px !important;
        padding: 15px !important;
    }
    
    .merch-section {
        padding: 60px 15px 80px 15px;
    }
}

/* Business Info Styling - Subtle for Privacy */
.business-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(248, 212, 76, 0.1);
    opacity: 0.6;
    font-size: 0.8rem;
}

.business-info p {
    margin: 5px 0;
    color: #888;
}

.policy-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #f8d44c;
}

.contact-info, .address-info {
    font-size: 0.75rem !important;
    color: #666 !important;
}



/* Policy Page Styling */
.policy-page {
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.98) 0%, rgba(17, 17, 17, 0.95) 100%);
    padding: 120px 20px 80px 20px;
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h1 {
    color: #f8d44c;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(248, 212, 76, 0.3);
}

.last-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(248, 212, 76, 0.1);
}

.policy-content-detailed {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
}

.policy-content-detailed h2 {
    color: #f8d44c;
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(248, 212, 76, 0.2);
}

.policy-content-detailed h3 {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.policy-content-detailed p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content-detailed ul {
    margin: 15px 0 20px 25px;
    padding-left: 0;
}

.policy-content-detailed li {
    margin-bottom: 8px;
    color: #ccc;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(248, 212, 76, 0.2);
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 10px;
    text-align: left !important;
}

.policy-summary {
    background: rgba(248, 212, 76, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(248, 212, 76, 0.3);
    margin-top: 30px;
}

.policy-summary h2 {
    color: #f8d44c !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    border-bottom: none !important;
    text-align: center;
}

.policy-summary ul {
    margin: 0;
}

.policy-summary li {
    margin-bottom: 10px;
    color: #f8d44c !important;
    font-weight: 500;
}

/* Mobile Responsiveness for Policy Pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 15px 60px 15px;
    }
    
    .policy-container h1 {
        font-size: 2rem;
    }
    
    .policy-content-detailed h2 {
        font-size: 1.2rem;
    }
    
    .policy-content-detailed h3 {
        font-size: 1.1rem;
    }
    
    .contact-details, .policy-summary {
        padding: 20px 15px;
    }
}

/* Tipping Section */
.tipping-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
    border-top: 1px solid rgba(248, 212, 76, 0.3);
    text-align: center;
}

.tipping-container {
    max-width: 600px;
    margin: 0 auto;
}

.tipping-section h2 {
    font-size: 2.2rem;
    color: #ffcc00;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 1px;
}

.tipping-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 35px;
}

.tip-button {
    margin: 20px 0;
    animation: tipButtonPulse 3s ease-in-out infinite;
}

.tipping-thanks {
    font-size: 1rem;
    color: #f8d44c;
    margin-top: 20px;
    font-weight: 600;
}

@keyframes tipButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(248, 212, 76, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(248, 212, 76, 0.6);
    }
}

/* Tip Modal */
.tip-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

.tip-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 10% auto;
    padding: 0;
    border: 2px solid #f8d44c;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(248, 212, 76, 0.3);
    animation: slideIn 0.3s ease-out;
    overflow: hidden;
}

.tip-modal-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(248, 212, 76, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tip-modal-header h3 {
    color: #ffcc00;
    margin: 0;
    font-size: 1.4rem;
}

.tip-close {
    color: #f8d44c;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 5px;
}

.tip-close:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

.tip-content {
    padding: 40px;
    text-align: center;
}

.tip-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: tipIconBounce 2s ease-in-out infinite;
}

.tip-message {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tip-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tip-open-btn {
    background: linear-gradient(45deg, #f8d44c, #ffcc00);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tip-open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 212, 76, 0.6);
}

.tip-note {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Mobile responsiveness for tipping section */
@media (max-width: 768px) {
    .tipping-section {
        padding: 60px 15px;
    }
    
    .tipping-section h2 {
        font-size: 1.8rem;
    }
    
    .tipping-description {
        font-size: 1rem;
    }
    
    .tip-modal-content {
        margin: 15% auto;
        width: 95%;
    }
    
    .tip-modal-header {
        padding: 15px 20px;
    }
    
    .tip-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .tip-content {
        padding: 30px 20px;
    }
    
    .tip-open-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .tip-close {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .tip-modal-content {
        margin: 20% auto;
        width: 98%;
    }
    
    .tip-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .tip-content {
        padding: 25px 15px;
    }
    
    .tip-icon {
        font-size: 3rem;
    }
    
    .tip-message {
        font-size: 1rem;
    }
}