/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fire-orange: #ff6b00;
    --fire-yellow: #ffcc00;
    --fire-red: #ff3300;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --glow-color: rgba(255, 107, 0, 0.5);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== FIRE BACKGROUND ===== */
#fireCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ===== NAVIGATION TABS ===== */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-tab:hover {
    color: var(--fire-yellow);
    border-color: var(--fire-orange);
    background: rgba(255, 107, 0, 0.1);
}

.nav-tab.active {
    color: var(--fire-yellow);
    border-color: var(--fire-orange);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 51, 0, 0.2));
    box-shadow: 0 0 15px var(--glow-color);
}

@media (max-width: 480px) {
    .nav-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-tab {
        width: 100%;
        justify-content: center;
    }
}

/* ===== HEADER ===== */
.header {
    text-align: center;
    padding: 40px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--fire-orange);
    box-shadow: 0 0 30px var(--glow-color),
                0 0 60px var(--glow-color),
                inset 0 0 20px rgba(255, 107, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px var(--glow-color); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px var(--glow-color), 0 0 80px var(--fire-red); }
}

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--fire-yellow), var(--fire-orange), var(--fire-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--glow-color);
    animation: flicker 0.5s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { opacity: 1; }
    100% { opacity: 0.9; }
}

.tagline {
    font-size: 1.5rem;
    color: var(--fire-yellow);
    text-shadow: 0 0 20px var(--glow-color);
}

/* ===== CONTRACT SECTION ===== */
.contract-section {
    margin: 30px 0;
}

.contract-box {
    background: var(--card-bg);
    border: 2px solid var(--fire-orange);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 0 20px var(--glow-color);
}

.contract-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contract-address-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contract-address {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--fire-yellow);
    word-break: break-all;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-copy {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-copy:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--glow-color);
}

.btn-copy .btn-copied {
    display: none;
}

.btn-copy.copied .btn-text {
    display: none;
}

.btn-copy.copied .btn-copied {
    display: inline;
}

/* ===== SOCIAL BUTTONS ===== */
.social-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-social {
    background: var(--card-bg);
    border: 2px solid;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.btn-twitter {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.btn-twitter:hover {
    background: #1DA1F2;
    color: white;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
}

.btn-dex {
    border-color: #00ff88;
    color: #00ff88;
}

.btn-dex:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--fire-yellow);
    text-shadow: 0 0 15px var(--glow-color);
}

/* ===== STATS SECTION ===== */
.stats-section {
    margin: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    border: 2px solid var(--fire-orange);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

.stat-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-yellow), var(--fire-orange), var(--fire-red));
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fire-yellow);
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-section {
    margin: 50px 0;
    position: relative;
}

.dashboard-status {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-item strong {
    color: var(--fire-yellow);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    animation: pulse-dot 2s infinite;
}

.status-dot.active {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.status-dot.warning {
    background: #ffcc00;
    box-shadow: 0 0 10px #ffcc00;
}

.status-dot.error {
    background: #ff3333;
    box-shadow: 0 0 10px #ff3333;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Panels */
.dashboard-panel {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid;
    transition: all 0.3s ease;
}

.dashboard-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.panel-claim {
    border-color: #00ccff;
}

.panel-claim:hover {
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.panel-buy {
    border-color: #00ff88;
}

.panel-buy:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.panel-burn {
    border-color: var(--fire-orange);
}

.panel-burn:hover {
    box-shadow: 0 10px 30px var(--glow-color);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-icon {
    font-size: 1.8rem;
}

.panel-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.panel-body {
    padding: 20px;
}

.panel-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.panel-stat-row:last-of-type {
    border-bottom: none;
}

.panel-stat-row span:first-child {
    color: var(--text-secondary);
}

.value-highlight {
    font-family: 'Orbitron', sans-serif;
    color: var(--fire-yellow);
    font-weight: 600;
}

.value-success {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-weight: 600;
}

.value-burn {
    font-family: 'Orbitron', sans-serif;
    color: var(--fire-orange);
    font-weight: 600;
}

.value-info {
    font-family: 'Orbitron', sans-serif;
    color: #00ccff;
    font-weight: 600;
}

/* Progress Bar */
.panel-progress {
    margin: 15px 0;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ccff, #00ff88);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-fill.progress-green {
    background: linear-gradient(90deg, #00cc66, #00ff88);
}

.progress-fill.progress-fire {
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-yellow));
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Action Buttons */
.btn-action {
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-claim {
    background: linear-gradient(135deg, #00ccff, #0099cc);
    color: #fff;
}

.btn-claim:hover {
    background: linear-gradient(135deg, #00ddff, #00aadd);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
    transform: scale(1.02);
}

.btn-buy {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #00ff99, #00dd77);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transform: scale(1.02);
}

.btn-burn {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
    color: #fff;
}

.btn-burn:hover {
    background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange));
    box-shadow: 0 0 20px var(--glow-color);
    transform: scale(1.02);
}

.btn-action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-action.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Control Panel */
.control-panel {
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.control-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--fire-yellow);
    margin-bottom: 20px;
    text-align: center;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .controls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.control-item {
    display: flex;
    justify-content: center;
}

/* Toggle Switch */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.toggle-label span:first-child {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.toggle-label input {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 26px;
    background: #333;
    border-radius: 13px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
}

.toggle-label input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
    box-shadow: 0 0 10px var(--glow-color);
}

.toggle-label input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

/* Full Cycle Button */
.btn-full-cycle {
    padding: 12px 25px;
    background: linear-gradient(135deg, #9933ff, #6600cc);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-full-cycle:hover {
    background: linear-gradient(135deg, #aa44ff, #7700dd);
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.5);
    transform: scale(1.05);
}

/* Activity Log */
.activity-log {
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.activity-log h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--fire-yellow);
    margin-bottom: 15px;
}

.log-container {
    max-height: 200px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.log-entry {
    display: flex;
    gap: 15px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.log-time {
    color: #666;
    min-width: 70px;
}

.log-message {
    flex: 1;
}

.log-entry.log-info .log-message {
    color: #00ccff;
}

.log-entry.log-success .log-message {
    color: #00ff88;
}

.log-entry.log-burn .log-message {
    color: var(--fire-orange);
}

.log-entry.log-error .log-message {
    color: #ff3333;
}

.log-entry.log-warning .log-message {
    color: #ffcc00;
}

/* ===== BURN ANIMATION ===== */
.burn-animation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.burn-animation.active {
    opacity: 1;
}

.flame {
    width: 20px;
    height: 40px;
    background: linear-gradient(to top, var(--fire-red), var(--fire-orange), var(--fire-yellow));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: burn 0.5s ease-in-out infinite alternate;
}

.flame:nth-child(2) {
    animation-delay: 0.15s;
    height: 50px;
}

.flame:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes burn {
    0% { transform: scaleY(1) scaleX(1); }
    100% { transform: scaleY(1.2) scaleX(0.9); }
}

/* ===== RECENT BUYS ===== */
.buys-section {
    margin: 50px 0;
}

.buys-container {
    background: var(--card-bg);
    border: 2px solid var(--fire-orange);
    border-radius: 15px;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.buy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.buy-item:last-child {
    border-bottom: none;
}

.buy-item.new {
    background: rgba(255, 107, 0, 0.1);
    animation: highlight 1s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes highlight {
    0% { background: rgba(255, 204, 0, 0.3); }
    100% { background: rgba(255, 107, 0, 0.1); }
}

.buy-wallet {
    font-family: 'Orbitron', monospace;
    color: var(--fire-yellow);
}

.buy-amount {
    font-weight: 700;
    color: #00ff88;
}

.buy-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.placeholder {
    text-align: center;
    color: var(--text-secondary);
    padding: 30px;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    margin-top: 50px;
}

.footer p {
    color: var(--fire-orange);
    margin-bottom: 10px;
}

.footer .small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--fire-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--fire-yellow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .contract-address {
        font-size: 0.9rem;
    }
    
    .stats-grid,
    .utility-grid {
        grid-template-columns: 1fr;
    }
    
    .social-section {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-social {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    margin: 60px 0;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.about-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fire-yellow), var(--fire-orange), var(--fire-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--fire-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.about-card:nth-child(2) .about-icon {
    animation-delay: 0.5s;
}

.about-card:nth-child(3) .about-icon {
    animation-delay: 1s;
}

.about-card:nth-child(4) .about-icon {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--fire-yellow);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 30px;
    background: var(--card-bg);
    border: 2px solid var(--fire-orange);
    border-radius: 20px;
    box-shadow: 0 0 30px var(--glow-color);
}

.about-stat-item {
    text-align: center;
}

.about-stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--fire-yellow), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-stats {
        gap: 30px;
    }
    
    .about-stat-value {
        font-size: 2rem;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    margin: 60px 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--fire-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3);
}

.gallery-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-image::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;
}

.gallery-item:hover .gallery-image::before {
    left: 100%;
}

.gallery-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: pulse-gallery 2s ease-in-out infinite;
}

.gallery-item:hover .gallery-emoji {
    animation: bounce-gallery 0.5s ease;
}

@keyframes pulse-gallery {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounce-gallery {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.gallery-info {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--fire-yellow);
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Gallery Video Styles */
.gallery-video {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-video video {
    transform: scale(1.05);
}

.video-item {
    position: relative;
}

.video-item::after {
    content: '▶';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover::after {
    opacity: 0;
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-image,
    .gallery-video {
        height: 180px;
    }
}
