@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Exo 2', sans-serif;
    background-color: #080312;
    background-image: url('/images/home-bg.jpg');
    background-size: 100% auto;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(48, 161, 231, 0.2);
    padding: 40px 30px 30px;
    margin-top: 60px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #30a1e7;
}

.footer-copyright {
    color: white;
    font-size: 13px;
    opacity: 0.8;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    text-decoration: underline;
    color: #30a1e7;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Moderation Modal */
.moderation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.moderation-content {
    background: #000;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    border: 1px solid rgba(48, 161, 231, 0.3);
}

.moderation-text {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.moderation-ok-btn {
    background: transparent;
    border: 2px solid #30a1e7;
    color: #30a1e7;
    padding: 12px 48px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.moderation-ok-btn:hover {
    background: rgba(48, 161, 231, 0.1);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(8,3,18,0.98) 0%, rgba(8,3,18,0.85) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(48, 161, 231, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-header {
    height: 50px;
    object-fit: contain;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: #30a1e7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background: #fff;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #000 0%, #0a0520 100%);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(48, 161, 231, 0.2);
}

.mobile-logo {
    height: 40px;
    object-fit: contain;
}

.close-sidebar-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 32px;
    height: 32px;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav a,
.mobile-nav button {
    display: block;
    width: 100%;
    padding: 15px 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover,
.mobile-nav button:hover {
    background: rgba(48, 161, 231, 0.1);
    padding-left: 20px;
    color: #30a1e7;
}

.mobile-nav a.active {
    color: #30a1e7;
    font-weight: 600;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.nav-categories {
    display: flex;
    gap: 25px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-categories::-webkit-scrollbar {
    display: none;
}

.nav-categories a {
    color: white;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-categories a:hover,
.nav-categories a.active {
    color: #30a1e7;
    border-bottom-color: #30a1e7;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: 2px solid #30a1e7;
    color: #30a1e7;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.icon-btn:hover {
    background: rgba(48, 161, 231, 0.15);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Main Content */
.main-content {
    padding-top: 80px;
    padding-bottom: 50px;
}

/* Hero Logo */
.hero-logo-section {
    text-align: center;
    padding: 140px 20px 40px 20px;
    margin-bottom: 30px;
}

.logo-main {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(48, 161, 231, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(48, 161, 231, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(48, 161, 231, 0.8)); }
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    padding: 0 30px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Horizontal Scrolling Container */
.experiences-container {
    padding: 0 30px 40px;
    overflow: hidden;
}

.scroll-wrapper {
    position: relative;
}

.experiences-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

.experiences-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Edge */
}

.experiences-scroll.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Scroll Navigation Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(48, 161, 231, 0.9), rgba(96, 193, 247, 0.9));
    border: 2px solid #30a1e7;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(48, 161, 231, 0.5), 0 0 40px rgba(48, 161, 231, 0.3);
}

.scroll-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, rgba(96, 193, 247, 1), rgba(48, 161, 231, 1));
    box-shadow: 0 0 30px rgba(48, 161, 231, 0.8), 0 0 60px rgba(48, 161, 231, 0.5);
}

.scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-arrow-left {
    left: -10px;
}

.scroll-arrow-right {
    right: -10px;
}

.scroll-arrow svg {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* All Experiences Grid Layout */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding-bottom: 20px;
    justify-items: center;
}

/* Experience Card */
/* Welcome Modal */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.welcome-modal.hidden {
    display: none;
}

.welcome-content {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
}

.welcome-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #333333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.welcome-text {
    font-size: 14px;
    color: white;
    line-height: 1.8;
    margin-bottom: 40px;
}

.welcome-btn {
    background: transparent;
    border: 2px solid #30a1e7;
    color: #30a1e7;
    padding: 16px 48px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-btn:hover {
    background: rgba(48, 161, 231, 0.1);
    transform: translateY(-2px);
}

.experience-card {
    min-width: 320px;
    max-width: 320px;
    background: rgba(15, 10, 30, 0.7);
    border-radius: 12px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.experience-card:hover {
    border: 1px solid #30a1e7;
}

/* Mobile active state - show blue border and play video */
.experience-card.mobile-active {
    border: 1px solid #30a1e7;
}

.experience-card.mobile-active .experience-cover img {
    display: none;
}

.experience-card.mobile-active .experience-cover video {
    display: block;
}

.experience-cover {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.experience-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-cover video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.experience-card:hover .experience-cover img {
    display: none;
}

.experience-card:hover .experience-cover video {
    display: block;
}

/* Favorite Icon */
.experience-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.experience-icon:hover {
    background: rgba(48, 161, 231, 0.3);
    transform: scale(1.1);
}

/* Lock Icon */
.lock-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    color: #30a1e7;
}

.lock-icon.unlocked {
    color: #30a1e7;
}

.lock-icon.locked {
    color: #30a1e7;
}

/* Experience Info */
.experience-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Buy Button on Card */
.card-buy-btn {
    margin-top: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.card-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.card-buy-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.experience-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.experience-category {
    font-size: 12px;
    color: #30a1e7;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #aaa;
    margin-top: 12px;
}

.experience-price {
    font-weight: 700;
    color: #30a1e7;
    font-size: 16px;
}

.experience-date {
    font-size: 11px;
}

/* Experience Detail View */
.experience-detail {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 3, 18, 0.98);
    z-index: 900;
    overflow-y: auto;
    padding: 30px;
}

.experience-detail.active {
    display: block;
}

.detail-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.detail-video-container video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.detail-video-container video::-webkit-media-controls {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-video-container:hover video::-webkit-media-controls,
.detail-video-container video:focus::-webkit-media-controls {
    opacity: 1;
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.detail-header {
    margin-bottom: 30px;
}

.detail-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #aaa;
}

.detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    margin: 30px 0;
}

.detail-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.play-btn {
    background: #30a1e7;
    border: 2px solid #30a1e7;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.play-btn:hover {
    background: transparent;
    transform: scale(1.05);
}

.play-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.favorite-btn {
    background: transparent;
    border: 2px solid #30a1e7;
    color: #30a1e7;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: rgba(48, 161, 231, 0.15);
}

.favorite-btn.active {
    background: #30a1e7;
    color: white;
}

.close-detail {
    position: fixed;
    top: 90px;
    right: 30px;
    background: rgba(48, 161, 231, 0.9);
    border: 2px solid #30a1e7;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 901;
}

.close-detail:hover {
    background: #30a1e7;
    transform: rotate(90deg);
}

/* Fullscreen Video Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 2000;
}

.fullscreen-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-modal video {
    width: 100%;
    height: 100%;
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(48, 161, 231, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.close-fullscreen:hover {
    background: #30a1e7;
    transform: rotate(90deg);
}

/* Currency Selector */
.currency-selector {
    position: relative;
}

.currency-selector select {
    background: transparent;
    border: 2px solid #30a1e7;
    color: #30a1e7;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

/* Favorites Modal */
.favorites-modal {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 3, 18, 0.98);
    z-index: 1100;
    overflow-y: auto;
    padding: 30px;
}

.favorites-modal.active {
    display: block;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 30px auto;
}

/* Mobile-First Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        padding: 10px 20px;
    }
    
    .nav-categories {
        gap: 15px;
    }
    
    .header-actions {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        /* Mobile-only: background image 350px height, maintains aspect ratio */
        background-size: auto 350px;
    }
    
    /* Fix welcome modal overflow on mobile */
    .welcome-content {
        padding: 40px 20px;
        max-width: 90vw;
        margin: 0 15px;
    }
    
    .welcome-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .welcome-text {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .welcome-btn {
        padding: 12px 32px;
        font-size: 16px;
    }
    
    /* Center All Experiences grid on mobile */
    .experiences-grid {
        justify-items: center;
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 15px;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .logo-header {
        height: 35px;
    }
    
    .nav-categories,
    .header-actions {
        display: none !important;
    }
    
    .main-content {
        padding-top: 80px;
    }
    
    .logo-main {
        max-width: 400px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 0 15px;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .experiences-container {
        padding: 0 15px 30px;
    }
    
    .experience-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .experience-cover {
        height: 160px;
    }
    
    .experience-title {
        font-size: 16px;
    }
    
    .experience-detail {
        padding: 20px 15px;
    }
    
    .detail-title {
        font-size: 28px;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .detail-description {
        font-size: 14px;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .play-btn,
    .favorite-btn {
        width: 100%;
        text-align: center;
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .close-detail {
        top: 100px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo-header {
        height: 30px;
    }
    
    .nav-categories a {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .icon-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .main-content {
        padding-top: 160px;
    }
    
    .logo-main {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .experience-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .experience-cover {
        height: 140px;
    }
    
    .experience-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .lock-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .experience-title {
        font-size: 14px;
    }
    
    .experience-info {
        padding: 15px;
    }
    
    .detail-title {
        font-size: 24px;
    }
    
    .detail-video-container {
        margin-bottom: 20px;
    }
    
    .fullscreen-btn {
        padding: 8px 16px;
        font-size: 12px;
        bottom: 10px;
        right: 10px;
    }
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(48, 161, 231, 0.2);
}

.comments-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    background: rgba(15, 10, 30, 0.5);
    border: 1px solid rgba(48, 161, 231, 0.3);
    border-radius: 8px;
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 10px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #30a1e7;
}

.comment {
    background: rgba(15, 10, 30, 0.5);
    border: 1px solid rgba(48, 161, 231, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #30a1e7;
    font-size: 14px;
}

.comment-date {
    font-size: 12px;
    color: #888;
}

.comment-content {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: #30a1e7;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.comment-action-btn:hover {
    background: rgba(48, 161, 231, 0.1);
}

.replies {
    margin-left: 40px;
    margin-top: 15px;
}

.reply-form {
    margin-left: 40px;
    margin-top: 10px;
}

.reply-form textarea {
    width: 100%;
    min-height: 60px;
    padding: 10px;
    background: rgba(15, 10, 30, 0.5);
    border: 1px solid rgba(48, 161, 231, 0.3);
    border-radius: 8px;
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    resize: vertical;
    margin-bottom: 5px;
}

.reply-form textarea:focus {
    outline: none;
    border-color: #30a1e7;
}
