/* ===== CSS VARIABLES ===== */
/* Desenvolvido por André "Tutankhamal" Borba */
:root {
    --accent-color: #76e7ff;
    --text-light: #cccccc;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(118, 231, 255, 0.3);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 6px;
    background: #76e7ff;
    color: #000;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    top: 6px;
    opacity: 1;
    pointer-events: auto;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Performance optimizations for low-end devices */
@media (max-width: 768px), (max-height: 600px) {
    .glass, .glass-dark {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
    }
    
    .navbar {
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    .footer {
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #76e7ff;
    text-shadow: 0 0 20px rgba(118, 231, 255, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #76e7ff, transparent);
}

/* ===== HEXAGON BACKGROUND ===== */
.hexagon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at center, #0f1419 0%, #0a0a0a 100%);
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 15px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 20, 20, 0.85) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(118, 231, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(118, 231, 255, 0.03) 50%, 
        transparent 100%);
    pointer-events: none;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.nav-brand-link {
    text-decoration: none;
    color: inherit;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    transition: transform 0.4s ease;
}

.nav-logo img:hover {
    transform: scale(1.15);
}

.nav-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.nav-brand:hover {
    color: #76e7ff;
    text-shadow: 
        0 0 15px rgba(118, 231, 255, 0.8),
        0 0 30px rgba(118, 231, 255, 0.5),
        0 0 40px rgba(118, 231, 255, 0.3);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    padding: 12px 20px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    will-change: transform;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 231, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(118, 231, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 100%;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.nav-link:hover {
    color: #76e7ff;
    background: rgba(118, 231, 255, 0.1);
    border: 2px solid rgba(118, 231, 255, 0.3);
    text-shadow: 0 0 8px rgba(118, 231, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 15px rgba(118, 231, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #76e7ff;
    background: rgba(118, 231, 255, 0.15);
    border: 2px solid #76e7ff;
    text-shadow: 0 0 10px rgba(118, 231, 255, 0.6);
    box-shadow: 
        0 0 20px rgba(118, 231, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link:active {
    transform: translateY(0px);
    transition: all 0.1s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(118, 231, 255, 0.3);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(118, 231, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-toggle:hover::before {
    opacity: 1;
}

.nav-toggle:hover {
    border-color: rgba(118, 231, 255, 0.6);
    box-shadow: 
        0 0 15px rgba(118, 231, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #76e7ff, #0a9bd1);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(118, 231, 255, 0.3);
}

.nav-toggle:hover .hamburger-line {
    background: linear-gradient(90deg, #ffffff, #76e7ff);
    box-shadow: 0 0 10px rgba(118, 231, 255, 0.6);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-container {
    margin-bottom: 2rem;
    position: relative;
}

.hero-logo {
    width: 250px;
    height: 250px;
    border-radius: 1rem;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 30px rgba(118, 231, 255, 0.3));
    position: relative;
    z-index: 2;
}

.hero-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 50px rgba(118, 231, 255, 0.8));
    animation: glitch-logo 0.3s ease-in-out;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #cccccc;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-decoration: none;
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
    will-change: transform;
}

.cta-primary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(118, 231, 255, 0.1) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: #76e7ff;
    border: 2px solid #76e7ff;
    box-shadow: 
        0 8px 32px rgba(118, 231, 255, 0.3),
        0 0 0 1px rgba(118, 231, 255, 0.2),
        inset 0 1px 0 rgba(118, 231, 255, 0.1);
}

.cta-secondary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(118, 231, 255, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
    color: #76e7ff;
    border: 2px solid #76e7ff;
    box-shadow: 
        0 8px 32px rgba(118, 231, 255, 0.2),
        0 0 0 1px rgba(118, 231, 255, 0.2),
        inset 0 1px 0 rgba(118, 231, 255, 0.1);
}

/* Simplified pseudo-elements for better performance */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(118, 231, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(118, 231, 255, 0.3),
        0 0 20px rgba(118, 231, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #76e7ff 0%, #ffffff 50%, #76e7ff 100%);
    color: #000;
    border-color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.cta-secondary:hover {
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(118, 231, 255, 0.8) 100%);
    color: #000;
    border-color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(118, 231, 255, 0.8));
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* ===== GLITCH EFFECTS ===== */
.glitch-text {
    position: relative;
    display: inline-block;
    animation: retro-glow 3s ease-in-out infinite;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glitch-text:hover {
    animation: retro-glitch 0.6s ease-in-out,
               subtle-flicker 1.2s ease-in-out infinite;
    text-shadow: 
        0 0 3px #76e7ff,
        0 0 6px #76e7ff,
        0 0 9px #76e7ff,
        0.5px 0 0 #76e7ff,
        -0.5px 0 0 #76e7ff;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glitch-text:hover::before {
    animation: retro-shift-red 0.6s ease-in-out;
    color: #76e7ff;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-1px, 0);
    opacity: 0.6;
}

.glitch-text:hover::after {
    animation: retro-shift-cyan 0.6s ease-in-out;
    color: #76e7ff;
    z-index: -2;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(1px, 0);
    opacity: 0.6;
}

@keyframes retro-glow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(118, 231, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(118, 231, 255, 0.4);
    }
}

@keyframes retro-glitch {
    0%, 100% {
        transform: translate(0, 0);
        filter: hue-rotate(0deg);
    }
    20% {
        transform: translate(1px, 0);
        filter: hue-rotate(5deg);
    }
    40% {
        transform: translate(-1px, 0);
        filter: hue-rotate(-5deg);
    }
    60% {
        transform: translate(0, 1px);
        filter: hue-rotate(3deg);
    }
    80% {
        transform: translate(0, -1px);
        filter: hue-rotate(-3deg);
    }
}

@keyframes retro-shift-red {
    0%, 100% {
        transform: translate(-1px, 0);
        opacity: 0;
    }
    50% {
        transform: translate(-2px, 0);
        opacity: 0.6;
    }
}

@keyframes retro-shift-cyan {
    0%, 100% {
        transform: translate(1px, 0);
        opacity: 0;
    }
    50% {
        transform: translate(2px, 0);
        opacity: 0.6;
    }
}

@keyframes subtle-flicker {
    0%, 100% {
        opacity: 0.96;
        text-shadow: 0 0 6px #76e7ff;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 8px #76e7ff;
    }
}

@keyframes glitch-logo {
    0%, 100% { transform: scale(1.1); }
    25% { transform: scale(1.1) translate(-2px, 2px); }
    50% { transform: scale(1.1) translate(2px, -2px); }
    75% { transform: scale(1.1) translate(-2px, -2px); }
}

/* ===== METRICS SECTION ===== */
.metrics-section {
    padding: 80px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 231, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

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

.metric-card:hover {
    transform: translateY(-5px);
    border-color: #76e7ff;
    box-shadow: 0 15px 40px rgba(118, 231, 255, 0.2);
}

.metric-icon {
    font-size: 3rem;
    color: #76e7ff;
    margin-bottom: 1rem;
}

.metric-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(118, 231, 255, 0.3);
}

.metric-label {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    padding: 80px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.indexvideo-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.indexvideo-item:hover {
    transform: translateY(-5px);
    border-color: #76e7ff;
    box-shadow: 0 15px 30px rgba(118, 231, 255, 0.2);
}

.indexvideo-title-text {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #76e7ff;
    font-size: 1.2rem;
    gap: 1rem;
}

.loading-spinner i {
    font-size: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(118, 231, 255, 0.2);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #76e7ff;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(118, 231, 255, 0.1);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 50%;
    color: #76e7ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 231, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(118, 231, 255, 0.2);
    border-color: #76e7ff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(118, 231, 255, 0.3);
}

.footer-info {
    text-align: right;
}

.copyright {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}





.developer-credit {
    font-size: 0.9rem;
    color: #888888;
}

.developer-name {
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-subtle 3s infinite;
    text-decoration: none;
}

.developer-name:hover {
    color: #76e7ff;
    text-shadow: 0 0 15px rgba(118, 231, 255, 0.8);
    animation: pulse-hover 0.5s ease-in-out;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* ===== ROLETA COMPACTA ===== */
.roleta-section {
    padding: 2rem 0;
}

.roleta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.roleta-left-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.roleta-right-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Display Principal */
.roleta-display-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.roleta-display {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 40, 0.9));
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    height: 120px;
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(118, 231, 255, 0.3),
        inset 0 0 30px rgba(118, 231, 255, 0.1);
}

.roleta-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 231, 255, 0.2), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.roleta-message {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
    text-shadow: 0 0 20px rgba(118, 231, 255, 0.8);
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    line-height: 1.2;
}

.roleta-display.matrix-mode .roleta-message {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    animation: matrix-flicker 0.1s infinite;
}

@keyframes matrix-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Controles de Ação */
.roleta-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.roleta-btn {
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.15), rgba(118, 231, 255, 0.25));
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 1rem 2rem;
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roleta-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.25), rgba(118, 231, 255, 0.35));
    box-shadow: 0 0 20px rgba(118, 231, 255, 0.5);
    transform: translateY(-2px);
}

.roleta-btn:active:not(:disabled) {
    transform: translateY(0);
}

.roleta-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: rgba(118, 231, 255, 0.08);
    border-color: rgba(118, 231, 255, 0.4);
}

.roleta-btn-primary {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.15), rgba(0, 255, 127, 0.25));
    border-color: #00ff7f;
    color: #00ff7f;
}

.roleta-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.25), rgba(0, 255, 127, 0.35));
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.roleta-btn-secondary {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 69, 0, 0.25));
    border-color: #ff4500;
    color: #ff4500;
}

.roleta-btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.25), rgba(255, 69, 0, 0.35));
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

/* Área de Configurações */
.roleta-config {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(118, 231, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.config-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.config-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-label {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(118, 231, 255, 0.5);
}

.config-textarea {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.config-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(118, 231, 255, 0.3);
}

.config-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.config-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.counter-limit {
    color: rgba(118, 231, 255, 0.6);
}

/* Controles de Tempo */
.time-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(118, 231, 255, 0.3);
    border-radius: 8px;
    color: var(--accent-color);
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.config-select:hover {
    border-color: rgba(118, 231, 255, 0.6);
    box-shadow: 0 0 10px rgba(118, 231, 255, 0.3);
}

.config-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(118, 231, 255, 0.5);
}

.config-select option {
    background: rgba(0, 0, 0, 0.9);
    color: var(--accent-color);
    padding: 0.5rem;
}

/* Upload de Áudios */
.audio-upload-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audio-upload {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-label {
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.1), rgba(118, 231, 255, 0.2));
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: var(--accent-color);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.upload-label:hover {
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.2), rgba(118, 231, 255, 0.3));
    box-shadow: 0 0 15px rgba(118, 231, 255, 0.3);
}

.upload-input {
    display: none;
}

.upload-info {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0.5rem;
}

/* Controles de Volume */
.volume-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-label {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    min-width: 100px;
    font-size: 0.9rem;
}

.volume-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    outline: none;
    border: 1px solid rgba(118, 231, 255, 0.3);
}

.volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(118, 231, 255, 0.5);
}

.volume-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(118, 231, 255, 0.5);
}

.volume-value {
    font-family: 'Orbitron', monospace;
    color: var(--accent-color);
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
}

/* ===== RESPONSIVIDADE ===== */
/* Breakpoint para tablets grandes e telas médias */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* Breakpoint para tablets pequenos */
@media (max-width: 900px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .nav-brand {
        font-size: 1.4rem;
    }
    
    .nav-logo img {
        width: 40px;
        height: 40px;
    }
}

/* Breakpoint para conversão em menu hambúrguer */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(118, 231, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        width: 187px;
        height: 187px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 80px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        padding: 6px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CANAL PAGE STYLES ===== */

/* Canal Hero Section */
.canal-hero-section {
    padding: 8rem 0 4rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.canal-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.canal-hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-top: 1rem;
    line-height: 1.6;
    font-weight: 700;
}

/* Main Player Section */
.main-player-section {
    padding: 4rem 0;
    background: transparent;
}

.main-player-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(118, 231, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.main-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 231, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.player-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    text-align: center;
}

.player-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.player-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #76e7ff, transparent);
    border-radius: 2px;
}

.player-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-status.live {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.player-status.live i {
    animation: pulse 2s infinite;
}

.player-status.offline {
    background: rgba(128, 128, 128, 0.2);
    color: #888;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

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

.main-player-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .main-player-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .player-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .player-title::after {
        width: 60px;
        height: 2px;
    }
}

.main-player {
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    border: 2px solid rgba(118, 231, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(118, 231, 255, 0.1);
    transition: all 0.3s ease;
}

.main-player:hover {
    border-color: rgba(118, 231, 255, 0.4);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(118, 231, 255, 0.2);
    transform: translateY(-2px);
}

.player-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 1rem;
}

.player-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ff6b6b;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}

.retry-btn {
    background: linear-gradient(135deg, #76e7ff, #0080ff);
    color: #0a0a0a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(118, 231, 255, 0.3);
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.player-video-title {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.player-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.player-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.player-btn.primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    box-shadow: 
        0 4px 15px rgba(255, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 0, 0.1);
}

.player-btn.primary:hover {
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 
        0 6px 20px rgba(255, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
}

.player-btn.secondary {
    background: rgba(118, 231, 255, 0.1);
    color: #76e7ff;
    border: 2px solid rgba(118, 231, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(118, 231, 255, 0.1),
        0 0 20px rgba(118, 231, 255, 0.05);
    text-shadow: 0 0 10px rgba(118, 231, 255, 0.5);
}

.player-btn.secondary:hover {
    background: rgba(118, 231, 255, 0.2);
    border-color: rgba(118, 231, 255, 0.5);
    box-shadow: 
        0 6px 20px rgba(118, 231, 255, 0.2),
        0 0 30px rgba(118, 231, 255, 0.1);
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(118, 231, 255, 0.7);
}

.player-chat {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
}

.chat-header {
    background: rgba(118, 231, 255, 0.1);
    padding: 1rem;
    border-bottom: 1px solid rgba(118, 231, 255, 0.2);
}

.chat-header h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
}

/* Canal Videos Section */
.canal-videos-section {
    padding: 4rem 0;
    background: transparent;
}

.canal-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.canal-video-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.canal-video-item:hover {
    transform: translateY(-5px);
    border-color: #76e7ff;
    box-shadow: 0 15px 40px rgba(118, 231, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-info {
    padding: 1rem;
}

.video-title {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #666;
    gap: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(118, 231, 255, 0.1);
    border-top: 2px solid #76e7ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.no-videos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-videos i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-player-content {
        grid-template-columns: 1fr;
    }
    
    .canal-videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .canal-hero-section {
        padding: 6rem 0 3rem;
    }
    
    .canal-hero-description {
        font-size: 1.1rem;
    }
    
    .main-player-container {
        padding: 1.5rem;
    }
    
    .player-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .player-title {
        font-size: 1.3rem;
    }
    
    .canal-videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .player-chat iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .main-player-container {
        padding: 1rem;
    }
    
    .player-actions {
        gap: 0.5rem;
    }
    
    .player-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.9), rgba(0, 200, 200, 0.9));
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(118, 231, 255, 0.3),
        0 0 20px rgba(118, 231, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top:hover {
    background: linear-gradient(135deg, rgba(118, 231, 255, 1), rgba(0, 220, 220, 1));
    border-color: rgba(118, 231, 255, 0.6);
    transform: translateY(0) scale(1.1);
    box-shadow: 
        0 6px 20px rgba(118, 231, 255, 0.4),
        0 0 30px rgba(118, 231, 255, 0.3);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .glitch-text,
    .glitch-text::before,
    .glitch-text::after {
        animation: none;
    }
    
    .developer-name {
        animation: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .nav-link,
    .cta-button,
    .social-link {
        border-width: 3px;
    }
    
    .hero-title,
    .section-title {
        text-shadow: none;
        font-weight: 900;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hexagon-background,
    .navbar,
    .hero-cta,
    .videos-section,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-title,
    .section-title {
        color: black;
        text-shadow: none;
    }
}

/* ===== SHOP SECTION ===== */
.shop-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.shop-description {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    will-change: transform;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 231, 255, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #76e7ff;
    box-shadow: 
        0 20px 40px rgba(118, 231, 255, 0.2),
        0 0 30px rgba(118, 231, 255, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.1), rgba(0, 200, 200, 0.05));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(118, 231, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #76e7ff, #5bc0de);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(118, 231, 255, 0.3);
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #76e7ff;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(118, 231, 255, 0.3);
}

.product-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.price-current {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #76e7ff;
    text-shadow: 0 0 10px rgba(118, 231, 255, 0.4);
}

.price-original {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}

.product-button {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.shop-cta {
    text-align: center;
    margin-top: 2rem;
}

.shop-note {
    color: #aaa;
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 600;
}

/* ===== SHOP RESPONSIVE ===== */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .price-current {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .shop-description {
         font-size: 1rem;
         margin-bottom: 2rem;
     }
 }

/* ===== SHOP CTA CONTAINER STYLES ===== */
.shop-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.shop-highlight {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    transition: all 0.3s ease;
}

.shop-highlight:hover {
    transform: translateY(-5px);
    border-color: #76e7ff;
    box-shadow: 0 15px 30px rgba(118, 231, 255, 0.2);
}

.shop-icon {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.shop-highlight-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.shop-highlight-text {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 600;
}

.shop-main-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    min-width: 200px;
}

.shop-main-cta i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* ===== SHOP CTA RESPONSIVE ===== */
@media (max-width: 768px) {
    .shop-cta-container {
        gap: 1.5rem;
    }
    
    .shop-highlight {
        padding: 1.5rem;
    }
    
    .shop-icon {
        font-size: 2.5rem;
    }
    
    .shop-highlight-title {
        font-size: 1.3rem;
    }
    
    .shop-main-cta {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .shop-highlight {
        padding: 1.2rem;
    }
    
    .shop-highlight-title {
        font-size: 1.2rem;
    }
    
    .shop-highlight-text {
        font-size: 0.95rem;
    }
    
    .shop-main-cta {
        padding: 0.8rem 1.5rem;
        min-width: 160px;
    }
 }

/* ===== DEVELOPMENT MODAL STYLES ===== */
.dev-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.dev-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.dev-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dev-modal-content {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 20, 20, 0.9) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(118, 231, 255, 0.4);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(118, 231, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s ease-out;
    position: relative;
}

.dev-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(118, 231, 255, 0.05) 50%, 
        transparent 100%);
    pointer-events: none;
    border-radius: 18px;
}

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

.dev-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(118, 231, 255, 0.2);
    position: relative;
}

.dev-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(118, 231, 255, 0.1);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 50%;
    color: #76e7ff;
    font-size: 1.5rem;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(118, 231, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(118, 231, 255, 0.6);
    }
}

.dev-modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
    text-shadow: 0 0 10px rgba(118, 231, 255, 0.3);
}

.dev-modal-close {
    background: transparent;
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #76e7ff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.dev-modal-close:hover {
    background: rgba(118, 231, 255, 0.1);
    border-color: #76e7ff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(118, 231, 255, 0.4);
}

.dev-modal-body {
    padding: 1.5rem 2rem;
}

.dev-modal-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dev-modal-text strong {
    color: #76e7ff;
    font-weight: 600;
}

.dev-modal-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dev-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(118, 231, 255, 0.05);
    border: 1px solid rgba(118, 231, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dev-feature:hover {
    background: rgba(118, 231, 255, 0.1);
    border-color: rgba(118, 231, 255, 0.4);
    transform: translateX(5px);
}

.dev-feature i {
    color: #76e7ff;
    font-size: 1rem;
    min-width: 16px;
}

.dev-feature span {
    color: #cccccc;
    font-weight: 500;
}

.dev-modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.dev-modal-btn {
    background: linear-gradient(135deg, #76e7ff 0%, #00cccc 100%);
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    color: #000000;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(118, 231, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.dev-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(118, 231, 255, 0.5);
    background: linear-gradient(135deg, #88f0ff 0%, #00dddd 100%);
}

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

.dev-modal-btn:active {
    transform: translateY(0);
}

/* ===== DEVELOPMENT MODAL RESPONSIVE ===== */
@media (max-width: 768px) {
    .dev-modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .dev-modal-header {
        padding: 1.5rem 1.5rem 1rem;
        gap: 0.8rem;
    }
    
    .dev-modal-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .dev-modal-title {
        font-size: 1.2rem;
    }
    
    .dev-modal-body {
        padding: 1rem 1.5rem;
    }
    
    .dev-modal-text {
        font-size: 1rem;
    }
    
    .dev-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .dev-modal-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dev-modal-content {
        max-width: 98%;
        margin: 0.5rem;
    }
    
    .dev-modal-header {
        padding: 1.2rem 1.2rem 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .dev-modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
    
    .dev-modal-body {
        padding: 1rem 1.2rem;
    }
    
    .dev-modal-features {
        gap: 0.6rem;
    }
    

    
    .dev-modal-footer {
        padding: 0.8rem 1.2rem 1.2rem;
    }
    
    .dev-modal-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
    }
}

/* ===== SHOP PAGE SPECIFIC STYLES ===== */
.shop-hero-section {
    padding: 120px 0 80px;
    background: transparent;
    text-align: center;
}

.shop-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.shop-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.shop-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #00ffff;
    font-weight: 600;
}

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

.shop-products-section {
    padding: 80px 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #aaa;
}

.feature i {
    color: #00ffff;
    font-size: 0.8rem;
}

.shop-info {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(118, 231, 255, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #76e7ff;
    box-shadow: 0 15px 30px rgba(118, 231, 255, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.info-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.info-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== SHOP PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .shop-hero-stats {
        gap: 1.5rem;
    }
    
    .shop-stat {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .shop-stat i {
        font-size: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-features {
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .shop-hero-section {
        padding: 100px 0 60px;
    }
    
    .shop-hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .shop-stat {
        min-width: 80px;
        font-size: 0.8rem;
    }
    
    .shop-stat i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
 }

/* ===== SOBRE PAGE STYLES ===== */

/* Content Sections */
.sobre-section {
    padding: 4rem 0;
    margin: 2rem 0;
}

.sobre-section .container {
    position: relative;
    z-index: 1;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    border: 2px solid rgba(118, 231, 255, 0.3);
    transition: all 0.3s ease;
}

.content-text:hover {
    border-color: #76e7ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(118, 231, 255, 0.2);
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.content-image {
    text-align: center;
}

.feature-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 2px solid rgba(118, 231, 255, 0.3);
    box-shadow: 0 10px 30px rgba(118, 231, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.05);
    border-color: #76e7ff;
    box-shadow: 0 15px 40px rgba(118, 231, 255, 0.3);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    border: 2px solid rgba(118, 231, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-list:hover {
    border-color: #76e7ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(118, 231, 255, 0.2);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.feature-list li:hover {
    background: rgba(118, 231, 255, 0.1);
    transform: translateX(10px);
    border-color: #76e7ff;
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 1.3rem;
    min-width: 24px;
}

/* Alan Profile */
.alan-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.alan-profile:hover {
    border-color: #76e7ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(118, 231, 255, 0.2);
}

.alan-profile:hover::before {
    left: 100%;
}

.alan-image-container {
    position: relative;
}

.alan-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #76e7ff;
    box-shadow: 0 0 30px rgba(118, 231, 255, 0.3);
    object-fit: cover;
    transition: all 0.3s ease;
}

.alan-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(118, 231, 255, 0.5);
}

.alan-name {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(118, 231, 255, 0.5);
}

.alan-location {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alan-location i {
    color: var(--accent-color);
}

.alan-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.alan-description p {
    margin-bottom: 1.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #76e7ff;
    box-shadow: 0 15px 40px rgba(118, 231, 255, 0.2);
}

.value-icon {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.value-description {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .alan-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .alan-image {
        width: 150px;
        height: 150px;
    }
    
    .alan-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-title {
         font-size: 0.85rem;
         letter-spacing: 0.2px;
     }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .feature-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.2rem;
    }
    
    .value-title {
         font-size: 0.8rem;
         letter-spacing: 0.1px;
         line-height: 1.3;
     }
    
    .value-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 4rem 0;
}

.contact-method {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: rgba(118, 231, 255, 0.6);
    box-shadow: 0 10px 30px rgba(118, 231, 255, 0.2);
}

.contact-method.featured {
    border: 2px solid #76e7ff;
    background: rgba(118, 231, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-method.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contact-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #76e7ff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 20px rgba(118, 231, 255, 0.5);
    flex-shrink: 0;
}

.contact-icon.discord {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff;
}

.contact-icon.livepix {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #fff;
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #F56040, #FFDC80);
    color: #fff;
}

.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(118, 231, 255, 0.3);
}

.contact-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-features .feature {
    background: rgba(118, 231, 255, 0.1);
    border: 1px solid rgba(118, 231, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #00ffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-features .feature i {
    font-size: 0.8rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-button.primary {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #000;
    box-shadow: 0 4px 15px rgba(118, 231, 255, 0.3);
}

.contact-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(118, 231, 255, 0.5);
}

.contact-button.discord {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.contact-button.discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.contact-button.livepix {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.contact-button.livepix:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.contact-button.instagram {
    background: linear-gradient(135deg, #E4405F, #F56040, #FFDC80);
    color: #fff;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.contact-button.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

/* CTA Section */
.cta-section {
    background: rgba(118, 231, 255, 0.05);
    border-top: 1px solid rgba(118, 231, 255, 0.3);
    border-bottom: 1px solid rgba(118, 231, 255, 0.3);
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(118, 231, 255, 0.5);
}

.cta-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Contact Page */
/* ===== CONTACT PAGE STYLES ===== */

/* Contact Methods Section */
.contact-methods-section {
    padding: 4rem 0;
    background: transparent;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.contact-method-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

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

.contact-method-card:hover {
    transform: translateY(-8px);
    border-color: #76e7ff;
    box-shadow: 0 15px 40px rgba(118, 231, 255, 0.3);
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(118, 231, 255, 0.1);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(118, 231, 255, 0.5);
}

.contact-method-card:hover .contact-method-icon {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(118, 231, 255, 0.4);
    transform: scale(1.1);
}

.contact-method-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.contact-method-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-weight: bold;
}

/* Social Section */
.social-section {
    padding: 4rem 0;
    background: transparent;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.social-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 231, 255, 0.05), transparent);
    transition: left 0.4s ease;
    pointer-events: none;
}

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

.social-card:hover {
    transform: translateY(-5px);
    border-color: #76e7ff;
    box-shadow: 0 10px 30px rgba(118, 231, 255, 0.2);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(118, 231, 255, 0.1);
    border: 2px solid rgba(118, 231, 255, 0.3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 1.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.social-card:hover .social-icon {
    border-color: #76e7ff;
    box-shadow: 0 0 15px rgba(118, 231, 255, 0.3);
    transform: scale(1.1);
}

.social-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(118, 231, 255, 0.3);
}

.social-description {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
}

/* Responsive adjustments for contact page */
/* Responsive adjustments for contact page and extras */
@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-features {
        justify-content: center;
    }
    
    .contact-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Roleta Responsiva */
    .roleta-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roleta-left-section,
    .roleta-right-section {
        gap: 1.5rem;
    }
    
    .roleta-display {
        padding: 1.5rem 1rem;
        height: 100px;
        width: 100%;
    }
    
    .roleta-message {
        font-size: 1.2rem;
    }
    
    .roleta-display.matrix-mode .roleta-message {
        font-size: 1.2rem;
    }
    
    .roleta-controls {
        gap: 1rem;
    }
    
    .roleta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .roleta-config {
        padding: 1.5rem;
    }
    
    .config-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .config-textarea {
        min-height: 100px;
    }
    
    .volume-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .volume-label {
        min-width: auto;
    }
}

/* Extra small devices (320px and down) */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-toggle {
        padding: 5px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
        margin: 2px 0;
    }
    
    .nav-menu {
        width: 100%;
        padding: 60px 10px 20px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .volume-range {
        width: 100%;
    }
    
    .contact-method-card {
        padding: 1.5rem;
    }
    
    .social-card {
        padding: 1.2rem;
    }
}
