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

html {
    overflow-x: hidden;
    width: 100%;
}

/* Import Ethopool Font - LOCAL VERSION */
@font-face {
    font-family: 'Ethopool';
    src: url('./ethopool.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fallback Google Font */
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');

body {
    font-family: 'Ethopool', 'Creepster', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 25%, #000000 50%, #1a0000 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: darkGradientShift 15s ease infinite;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    width: 100%;
    max-width: 100%;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #000000, #1a0000, #330000, #000000);
    background-size: 400% 400%;
    animation: darkGradientShift 8s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 3s ease-in-out 2s forwards;
}

.loading-content {
    text-align: center;
    animation: pulse 2s infinite;
    padding: 1rem;
    width: 100%;
    max-width: 90%;
}

.skull {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
    animation: bounce 1s infinite alternate;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
}

.loading-text {
    font-family: 'Ethopool', 'Creepster', cursive;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: bold;
    color: #ff3333;
    text-shadow: 
        0 0 8px rgba(255, 51, 51, 0.5),
        0 0 15px rgba(255, 51, 51, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.9);
    padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 15px;
    border: 2px solid rgba(255, 51, 51, 0.6);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
    width: 100%;
    max-width: 95%;
}

.loading-logo {
    max-width: 85%;
    max-height: clamp(80px, 15vh, 150px);
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 51, 51, 0.5));
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #ff3333, #cc2222);
    border-radius: 50%;
    animation: loadingDots 1.5s infinite;
    box-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 2px solid rgba(255, 51, 51, 0.6);
    box-shadow: 0 5px 25px rgba(255, 51, 51, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    width: 100%;
}

.nav-logo-img {
    max-width: clamp(70px, 12vw, 140px);
    max-height: clamp(35px, 8vh, 80px);
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.8rem, 2vw, 2.5rem);
}

.nav-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ff3333;
    text-shadow: 
        0 0 5px rgba(255, 51, 51, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff3333, #cc2222);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 51, 51, 0.4);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ff3333, #cc2222);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 51, 51, 0.4);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(100px, 15vh, 140px) clamp(10px, 2vw, 20px) clamp(40px, 8vh, 80px);
    width: 100%;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #1a0000 75%, #000000 100%);
    background-size: 400% 400%;
    animation: darkGradientShift 12s ease infinite;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 51, 51, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 51, 51, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 51, 51, 0.08) 0%, transparent 50%);
    animation: flickerLight 4s ease-in-out infinite alternate;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: min(95%, 1000px);
    padding: clamp(1rem, 3vw, 3rem);
    animation: fadeInUp 2s ease-out;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.15);
}

.main-title-container {
    margin-bottom: clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    padding: clamp(1rem, 3vw, 3rem) clamp(1rem, 3vw, 4rem);
    border-radius: 20px;
    border: 2px solid rgba(255, 51, 51, 0.5);
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.3);
    width: 100%;
}

.main-title-img {
    max-width: 100%;
    max-height: clamp(100px, 20vh, 300px);
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 51, 51, 0.4));
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.subtitle {
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 2rem);
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-shadow: 
        2px 2px 4px #000000,
        0 0 6px rgba(255, 51, 51, 0.3);
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(0.8rem, 2.5vw, 1.5rem) clamp(1rem, 3vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.3;
    width: 100%;
}

.hero-description {
    font-size: clamp(1rem, 2.8vw, 1.4rem);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #e0e0e0;
    background: rgba(0, 0, 0, 0.7);
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Ethopool', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    width: 100%;
}

.hero-description .highlight {
    color: #ff3333;
    font-weight: bold;
    text-shadow: 
        0 0 6px rgba(255, 51, 51, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 51, 51, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 51, 0.3);
}

.hero-buttons {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    padding: clamp(0.8rem, 2.5vw, 1.2rem) clamp(1.2rem, 3vw, 2.5rem);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    min-width: clamp(120px, 25vw, 200px);
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff3333, #cc2222, #ff3333);
    background-size: 200% 200%;
    color: #ffffff;
    border: 2px solid #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.3);
    animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #cc2222, #ff3333, #cc2222);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
    transform: translateY(-3px);
    text-shadow: 0 0 8px #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #f0f0f0;
    border: 2px solid #f0f0f0;
    box-shadow: 0 0 10px rgba(240, 240, 240, 0.15);
}

.btn-secondary:hover {
    background: #f0f0f0;
    color: #000000;
    box-shadow: 0 0 15px rgba(240, 240, 240, 0.25);
    transform: translateY(-3px);
    text-shadow: none;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ghost, .bat, .spider {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    opacity: 0.4;
    color: #ff3333;
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

.ghost {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.bat {
    top: 30%;
    right: 15%;
    animation: float 4s ease-in-out infinite reverse;
}

.spider {
    bottom: 20%;
    left: 20%;
    animation: float 5s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a, #0a0a0a);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 51, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
}

.section-title {
    font-family: 'Ethopool', 'Creepster', cursive;
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    color: #ff3333;
    text-shadow: 
        0 0 12px rgba(255, 51, 51, 0.6),
        0 0 20px rgba(255, 51, 51, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.9);
    padding: clamp(0.8rem, 2.5vw, 1.5rem) clamp(1.2rem, 3vw, 3rem);
    border-radius: 20px;
    border: 2px solid rgba(255, 51, 51, 0.5);
    display: inline-block;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    letter-spacing: clamp(1px, 0.3vw, 3px);
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.2);
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 90%), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    z-index: 2;
    width: 100%;
}

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
    border-color: rgba(255, 51, 51, 0.6);
    background: rgba(255, 51, 51, 0.05);
}

.feature-icon {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.feature-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ff3333;
    font-family: 'Ethopool', sans-serif;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.feature-card p {
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

/* FAQ Section */
.faq {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 51, 51, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 51, 51, 0.06) 0%, transparent 50%);
}

.faq-container {
    max-width: min(95%, 900px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
}

.faq-item:hover {
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.15);
}

.faq-question {
    padding: clamp(1rem, 3vw, 2rem);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: rgba(255, 51, 51, 0.08);
    transition: all 0.3s ease;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    gap: 1rem;
    width: 100%;
}

.faq-question:hover {
    background: rgba(255, 51, 51, 0.15);
    color: #ffffff;
}

.faq-toggle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: #ff3333;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: clamp(1rem, 3vw, 2rem);
    color: #e0e0e0;
    line-height: 1.8;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Page Specific Styles */
.rules-hero, .contact-hero, .reviews-hero, .events-hero, .videos-hero {
    padding: clamp(8rem, 15vh, 10rem) 0 clamp(3rem, 8vh, 5rem);
    text-align: center;
    background: linear-gradient(135deg, #000000, #1a0000, #330000);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rules-hero::before, .contact-hero::before, .reviews-hero::before, 
.events-hero::before, .videos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 51, 51, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 51, 51, 0.08) 0%, transparent 50%);
}

.page-title {
    font-family: 'Ethopool', 'Creepster', cursive;
    font-weight: 900;
    font-size: clamp(2rem, 6vw, 5rem);
    color: #ff3333;
    text-shadow: 
        0 0 12px rgba(255, 51, 51, 0.6),
        0 0 20px rgba(255, 51, 51, 0.3),
        3px 3px 10px rgba(0, 0, 0, 0.9);
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    padding: clamp(0.8rem, 2.5vw, 1.5rem) clamp(1.2rem, 3vw, 3rem);
    border-radius: 20px;
    border: 2px solid rgba(255, 51, 51, 0.5);
    display: inline-block;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.3);
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    font-weight: 600;
    color: #e0e0e0;
    font-family: 'Ethopool', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    padding: 0 1rem;
    max-width: 90%;
    margin: 0 auto;
}

/* Rules Page */
.rules-content, .events-content, .videos-content {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a, #0a0a0a);
    width: 100%;
    overflow: hidden;
}

.rules-list {
    max-width: min(95%, 900px);
    margin: 0 auto;
    width: 100%;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border-left: 3px solid #ff3333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 51, 51, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.rule-item:hover {
    border-color: rgba(255, 51, 51, 0.5);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.15);
    transform: translateY(-5px);
}

.rule-number {
    background: linear-gradient(45deg, #ff3333, #cc2222);
    color: #ffffff;
    width: clamp(35px, 7vw, 50px);
    height: clamp(35px, 7vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Ethopool', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.3);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.rule-text {
    flex: 1;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.rules-warning {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 165, 0, 0.15);
    border: 2px solid #ffa500;
    border-radius: 15px;
    padding: clamp(1.2rem, 3vw, 2.5rem);
    margin: clamp(2rem, 5vw, 4rem) auto;
    max-width: min(95%, 900px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.15);
    gap: clamp(1rem, 2.5vw, 2rem);
    width: 100%;
}

.warning-icon {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #ffa500;
    text-shadow: 0 0 12px rgba(255, 165, 0, 0.5);
    flex-shrink: 0;
}

.warning-text h3 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1.2rem, 2.8vw, 1.7rem);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.5);
}

.warning-text p {
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #f0f0f0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

/* Events Page Styles */
.events-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 90%), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    width: 100%;
}

.event-category {
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 51, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.event-category:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
    background: rgba(255, 51, 51, 0.05);
}

.event-category i {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ff3333;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.event-category h3 {
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: bold;
    color: #ff3333;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.event-category p {
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.event-details {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 51, 51, 0.3);
}

.event-details p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
}

.event-details i {
    font-size: 1rem;
    margin-right: 0.8rem;
    color: #ff3333;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
}

/* Special Packages */
.special-packages {
    margin-top: clamp(3rem, 6vw, 5rem);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 90%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    width: 100%;
}

.package-card {
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(1.2rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.package-card.premium {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
}

.package-card.premium:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.package-card h3 {
    font-family: 'Ethopool', sans-serif;
    font-weight: bold;
    color: #ff3333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.package-card.premium h3 {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.package-card ul {
    list-style: none;
}

.package-card li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #e0e0e0;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.package-card li i {
    margin-right: 1rem;
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

/* Videos Page Styles */
.featured-video {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.video-card.featured {
    max-width: min(95%, 800px);
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 90%), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    width: 100%;
}

.video-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.video-embed {
    width: 100%;
    height: clamp(180px, 25vw, 250px);
    border: none;
}

.video-card.featured .video-embed {
    height: clamp(200px, 35vw, 400px);
}

.video-info {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.video-info h3 {
    font-family: 'Ethopool', sans-serif;
    font-weight: bold;
    color: #ff3333;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.video-info p {
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

/* Video Statistics */
.video-stats {
    margin: clamp(3rem, 6vw, 5rem) 0;
}

/* Social Media Section */
.social-media-section {
    margin: clamp(3rem, 6vw, 5rem) 0;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 90%), 1fr));
    gap: clamp(1.2rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    width: 100%;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 51, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.social-link:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.social-link.youtube {
    border-color: rgba(255, 51, 51, 0.6);
}

.social-link.youtube:hover {
    background: rgba(255, 51, 51, 0.08);
}

.social-link.instagram {
    border-color: rgba(228, 64, 95, 0.6);
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.08);
}

.social-link.tiktok {
    border-color: rgba(255, 255, 255, 0.6);
}

.social-link.tiktok:hover {
    background: rgba(255, 255, 255, 0.08);
}

.social-link.facebook {
    border-color: rgba(24, 119, 242, 0.6);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.08);
}

.social-link i {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #ff3333;
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

.social-link.instagram i {
    color: #e4405f;
    text-shadow: 0 0 12px rgba(228, 64, 95, 0.5);
}

.social-link.tiktok i {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.social-link.facebook i {
    color: #1877f2;
    text-shadow: 0 0 12px rgba(24, 119, 242, 0.5);
}

.social-link span {
    font-family: 'Ethopool', sans-serif;
    font-weight: 600;
    color: #e0e0e0;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.social-link small {
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #bbbbbb;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Contact Page */
.contact-content {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a, #0a0a0a);
    width: 100%;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    width: 100%;
}

.contact-info h2, .map-container h2 {
    color: #ff3333;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Ethopool', 'Creepster', cursive;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 51, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    width: 100%;
    flex-direction: column;
}

.contact-item:hover {
    border-color: rgba(255, 51, 51, 0.5);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    flex-shrink: 0;
    color: #ff3333;
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

.contact-details {
    text-align: center;
}

.contact-details h3 {
    color: #ff3333;
    margin-bottom: 0.8rem;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.contact-details a, .contact-details p {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-details a:hover {
    color: #ff3333;
    text-shadow: 0 0 6px rgba(255, 51, 51, 0.5);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.15);
    height: clamp(250px, 35vh, 400px);
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reservation-info {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.reservation-info h2 {
    color: #ff3333;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-family: 'Ethopool', 'Creepster', cursive;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

.reservation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 90%), 1fr));
    gap: clamp(1.2rem, 3vw, 2rem);
    width: 100%;
}

.reservation-item {
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(1.2rem, 3vw, 2rem);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
}

.reservation-item:hover {
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.15);
    transform: translateY(-5px);
}

.reservation-item h3 {
    color: #ff3333;
    margin-bottom: 1rem;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.reservation-item p {
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

/* Quick Contact */
.quick-contact {
    margin: clamp(3rem, 6vw, 5rem) 0;
}

.quick-contact-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 90%), 1fr));
    gap: clamp(1.2rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    width: 100%;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 51, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.quick-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.phone-btn {
    border-color: rgba(0, 123, 255, 0.6);
}

.phone-btn:hover {
    border-color: rgba(0, 123, 255, 0.8);
    background: rgba(0, 123, 255, 0.08);
}

.whatsapp-btn {
    border-color: rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover {
    border-color: rgba(37, 211, 102, 0.8);
    background: rgba(37, 211, 102, 0.08);
}

.instagram-btn {
    border-color: rgba(228, 64, 95, 0.6);
}

.instagram-btn:hover {
    border-color: rgba(228, 64, 95, 0.8);
    background: rgba(228, 64, 95, 0.08);
}

.quick-btn i {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #ff3333;
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

.phone-btn i {
    color: #007bff;
    text-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
}

.whatsapp-btn i {
    color: #25d366;
    text-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

.instagram-btn i {
    color: #e4405f;
    text-shadow: 0 0 12px rgba(228, 64, 95, 0.5);
}

.quick-btn span {
    font-family: 'Ethopool', sans-serif;
    font-weight: 600;
    color: #e0e0e0;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.quick-btn small {
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    color: #bbbbbb;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Contact FAQ */
.contact-faq {
    margin: clamp(3rem, 6vw, 5rem) 0;
}

/* Reviews Page */
.reviews-content {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a, #0a0a0a);
    width: 100%;
    overflow: hidden;
}

.reviews-section {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
    gap: clamp(0.8rem, 2vw, 1.5rem);
}

.platform-logo {
    height: clamp(30px, 6vw, 50px);
    filter: brightness(0) invert(1);
}

.platform-logo.tripadvisor {
    filter: none;
}

.reviews-header h2 {
    color: #ff3333;
    font-family: 'Ethopool', 'Creepster', cursive;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    margin: 0 clamp(0.8rem, 2vw, 1.5rem);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
    text-align: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stars {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.rating-text {
    font-weight: bold;
    color: #ff3333;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 90%), 1fr));
    gap: clamp(1.2rem, 3vw, 2rem);
    width: 100%;
}

.review-card {
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(1.2rem, 3vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
}

.review-card:hover {
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.15);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.reviewer-name {
    font-weight: bold;
    color: #ff3333;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    text-shadow: 0 0 6px rgba(255, 51, 51, 0.5);
}

.review-rating {
    margin-top: 0.5rem;
}

.review-date {
    color: #bbbbbb;
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    font-family: 'Ethopool', sans-serif;
    font-weight: 500;
    text-align: right;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.7;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stats-section {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.stats-section h2 {
    color: #ff3333;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-family: 'Ethopool', 'Creepster', cursive;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 90%), 1fr));
    gap: clamp(1.2rem, 3vw, 2.5rem);
    width: 100%;
}

.stat-item {
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
}

.stat-item:hover {
    border-color: rgba(255, 51, 51, 0.6);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.15);
    transform: translateY(-10px);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    color: #ff3333;
    margin-bottom: 1rem;
    font-family: 'Ethopool', 'Creepster', cursive;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.stat-label {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stat-stars, .stat-icon {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: #ff3333;
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 4rem) clamp(1rem, 3vw, 3rem);
    background: rgba(255, 51, 51, 0.08);
    border-radius: 20px;
    border: 2px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.15);
    width: 100%;
}

.cta-section h2, .cta-section h3 {
    color: #ff3333;
    margin-bottom: 1.5rem;
    font-family: 'Ethopool', 'Creepster', cursive;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: bold;
    text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
}

.cta-section p {
    color: #e0e0e0;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* Social Media Fixed Buttons - Mobile Optimized (Improved) */
.social-fixed {
    position: fixed;
    right: clamp(12px, 3vw, 25px);
    bottom: clamp(12px, 3vw, 25px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2.5vw, 18px);
    z-index: 1000;
}

.social-btn {
    width: clamp(60px, 12vw, 85px);
    height: clamp(60px, 12vw, 85px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
}

.social-btn i {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    line-height: 1;
}

.social-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
}

.social-btn.phone {
    background: linear-gradient(45deg, #007bff, #004bb3);
    color: #ffffff;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-btn:active {
    transform: scale(1.05) translateY(-1px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000, #1a0000);
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(1rem, 2vw, 1.5rem);
    border-top: 2px solid rgba(255, 51, 51, 0.5);
    box-shadow: 0 -10px 30px rgba(255, 51, 51, 0.15);
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 90%), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    width: 100%;
}

.footer-section h3, .footer-section h4 {
    color: #ff3333;
    margin-bottom: 1.5rem;
    font-family: 'Ethopool', 'Creepster', cursive;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-section a:hover {
    color: #ff3333;
    text-shadow: 0 0 6px rgba(255, 51, 51, 0.5);
}

.footer-section p {
    font-family: 'Ethopool', sans-serif;
    color: #e0e0e0;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-section i {
    margin-right: 0.8rem;
    color: #ff3333;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1.2rem, 3vw, 2.5rem);
    border-top: 1px solid rgba(255, 51, 51, 0.3);
    color: #bbbbbb;
    font-family: 'Ethopool', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes loadingDots {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

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

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

@keyframes flickerLight {
    0%, 100% { opacity: 0.08; }
    25% { opacity: 0.15; }
    50% { opacity: 0.20; }
    75% { opacity: 0.12; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 12px rgba(255, 51, 51, 0.6),
            0 0 20px rgba(255, 51, 51, 0.3),
            3px 3px 10px rgba(0, 0, 0, 0.9);
        filter: drop-shadow(0 0 15px rgba(255, 51, 51, 0.3));
    }
    50% {
        text-shadow: 
            0 0 16px rgba(255, 51, 51, 0.7),
            0 0 25px rgba(255, 51, 51, 0.4),
            3px 3px 10px rgba(0, 0, 0, 0.9);
        filter: drop-shadow(0 0 25px rgba(255, 51, 51, 0.5));
    }
}

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

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-elements {
        display: none;
    }
    
    .container {
        padding: 0 clamp(10px, 2.5vw, 15px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(15px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: clamp(1rem, 2.5vw, 1.5rem) 0;
    }
    
    .nav-link {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: min(280px, 90%);
    }
    
    .rule-item,
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .rule-number,
    .contact-icon {
        margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .warning-icon {
        margin-bottom: 1rem;
    }
    
    .rules-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-date {
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile social buttons improvements */
    .social-fixed {
        right: clamp(8px, 2vw, 15px);
        bottom: clamp(8px, 2vw, 15px);
        gap: clamp(8px, 1.5vw, 12px);
    }
    
    .social-btn {
        width: clamp(55px, 11vw, 75px);
        height: clamp(55px, 11vw, 75px);
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    
    .container {
        padding: 0 clamp(8px, 2vw, 12px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 clamp(6px, 1.5vw, 10px);
    }
    
    .hero-content {
        padding: clamp(0.8rem, 2vw, 1.5rem);
    }
    
    .main-title-container {
        padding: clamp(0.8rem, 2vw, 1.5rem);
    }
    
    .social-fixed {
        right: clamp(6px, 1.5vw, 10px);
        bottom: clamp(6px, 1.5vw, 10px);
        gap: clamp(6px, 1vw, 10px);
    }
    
    .social-btn {
        width: clamp(50px, 10vw, 65px);
        height: clamp(50px, 10vw, 65px);
        font-size: clamp(1.4rem, 3.5vw, 2rem);
        border-width: 1.5px;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0 clamp(6px, 1.5vw, 10px);
    }
    
    .hamburger {
        padding: 4px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .social-btn {
        width: clamp(45px, 9vw, 60px);
        height: clamp(45px, 9vw, 60px);
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        border-width: 1px;
    }
    
    .container {
        padding: 0 clamp(5px, 1vw, 8px);
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: clamp(60px, 8vh, 80px) clamp(15px, 3vw, 20px) clamp(20px, 3vh, 30px);
    }
    
    .nav-menu {
        padding: 1rem 0;
        overflow-y: auto;
    }
    
    .nav-menu li {
        margin: 0.6rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    .social-fixed {
        right: clamp(5px, 1vw, 15px);
        bottom: clamp(5px, 1vh, 15px);
        gap: clamp(4px, 0.5vw, 8px);
    }
    
    .social-btn {
        width: clamp(40px, 8vw, 55px);
        height: clamp(40px, 8vw, 55px);
        font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main-title-img,
    .loading-logo,
    .nav-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Print styles */
@print {
    .navbar,
    .social-fixed,
    .floating-elements,
    .hamburger {
        display: none !important;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    * {
        background: white !important;
        color: black !important;
        text-shadow: none !important;
        box-shadow: none !important;
    }
}