/* Professional Color Scheme Update */
:root {
    --primary: #0a0e27;
    --secondary: #1a1f3a;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border: #2d3561;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

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

body {
    font-family: 'Arial', sans-serif;
    background: var(--primary);
    color: var(--text);
    overflow-x: hidden;
}

/* Announcement Banner - Enhanced */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcement-banner.show {
    transform: translateY(0);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem 1rem 2rem;
    gap: 1rem;
    position: relative;
    min-height: 50px;
}

.announcement-icon {
    font-size: 1.2rem;
}

.announcement-text {
    font-weight: 500;
    text-align: center;
    flex: 1;
    max-width: 800px;
}

.announcement-close {
    position: absolute;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: inherit;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Announcement types */
.announcement-info {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.announcement-warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.announcement-success {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

.announcement-danger {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

/* Adjust body when announcement is shown */
body.has-announcement {
    padding-top: 50px;
}

body.has-announcement .navbar {
    top: 50px;
}

/* Adjust navbar when announcement is shown */
.announcement-banner.show ~ .navbar {
    margin-top: 50px;
}

/* Animated Background - Enhanced */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: -2;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--primary) 100%);
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating particles animation */
@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Navbar with glass effect */
.navbar {
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(45, 45, 45, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Fixed height for better alignment */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.logo-text {
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center; /* Center vertically */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0; /* Add vertical padding */
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:hover::before,
.glitch:hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch:hover::before {
    animation: glitch-1 0.3s infinite;
    color: var(--glow);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch-2 0.3s infinite;
    color: var(--accent);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(20% 0 60% 0); }
    40% { clip-path: inset(60% 0 20% 0); }
    60% { clip-path: inset(0 0 70% 0); }
    80% { clip-path: inset(70% 0 0 0); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* Navigation Active State */
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

/* Hero Section Enhanced */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.neon-text {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--secondary);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
}

/* Products Section - More Professional */
.products-section {
    padding: 5rem 0;
    background: var(--primary);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--secondary);
}

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

.contact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.contact-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--silver);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Mobile Responsiveness Enhanced */
@media (max-width: 768px) {
    /* General mobile fixes */
    body {
        -webkit-text-size-adjust: 100%;
    }
    
    /* Navbar mobile */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    /* Hero mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Products grid mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    /* Modal mobile */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    /* Contact cards mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    /* Announcements mobile */
    .announcements-list {
        padding: 0 1rem;
    }
    
    .announcement-card {
        padding: 1rem;
    }
    
    .announcement-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 1.8rem;
        gap: 1rem;
    }
    
    .title-line {
        width: 50px;
    }
    
    /* Forms mobile */
    #purchaseForm input,
    #reviewForm input,
    #reviewForm select,
    #reviewForm textarea {
        font-size: 16px; /* Prevents zoom on iPhone */
    }
    
    /* Buttons mobile */
    button {
        min-height: 44px; /* Apple's recommended touch target */
    }
}

/* iPhone specific fixes */
@media (max-width: 428px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 1rem;
    }
}

/* Safe area for notched iPhones */
@supports (padding: env(safe-area-inset-top)) {
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
    
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Smooth scrolling for iOS */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Character count styles */
.character-count {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--silver);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

#reviewForm textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 300px;
    margin-bottom: 0.25rem;
}

/* Review button fix */
.review-button {
    background: linear-gradient(135deg, var(--accent), var(--silver));
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    margin: 1rem 0;
    display: inline-block;
}

.loading-announcements,
.no-announcements,
.error-announcements {
    text-align: center;
    color: var(--silver);
    padding: 2rem;
    font-style: italic;
}

.error-announcements {
    color: #ff6666;
}

/* Fix announcement author avatars */
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.announcement-author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-author {
    font-weight: 600;
    color: var(--accent);
}

.announcement-time {
    font-size: 0.85rem;
    color: var(--silver);
}

/* Fix embed images */
.embed-thumbnail {
    max-width: 60px;
    max-height: 60px;
    float: right;
    border-radius: 8px;
    margin-left: 1rem;
    object-fit: cover;
}

.embed-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    margin-top: 0.5rem;
    object-fit: contain;
}

.attachment-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    object-fit: contain;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(45, 45, 45, 0.5) 100%);
}

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

.feature-box {
    background: rgba(45, 45, 45, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.feature-box:hover i {
    animation: bounce 0.6s ease-in-out;
}

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

/* Modal animations */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--secondary);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(192, 192, 192, 0.3);
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow-y: auto;
    animation: slideInUp 0.4s ease-out;
}

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

/* Loading animation for products */
.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(192, 192, 192, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
    margin: 2rem auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navbar scroll animation */
.navbar.scrolled {
    background: rgba(45, 45, 45, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Add scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reviews page specific styles */
.reviews-page-section {
    padding: 7rem 0 5rem;
    min-height: 100vh;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Write review section */
.write-review-section {
    background: rgba(45, 45, 45, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    margin-bottom: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.write-review-section h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.review-info {
    color: var(--silver);
    margin-bottom: 1.5rem;
}

.write-review-btn {
    background: linear-gradient(135deg, var(--accent), var(--silver));
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

/* Review form */
.review-form-container {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    text-align: left;
    animation: fadeInUp 0.5s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

.form-group small {
    display: block;
    color: var(--silver);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

/* Star rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #444;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffd700;
}

/* Submit button */
.submit-review-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-review-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 76, 0.3);
}

.submit-review-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Quote button styling - Enhanced */
.quote-section {
    background: rgba(88, 101, 242, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    margin-top: 1rem;
}

.quote-info {
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
}

.quote-button {
    background: linear-gradient(135deg, var(--discord), #4752c4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752c4, var(--discord));
}

.quote-button i {
    font-size: 1.2rem;
}

/* Detail image fixes */
.detail-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    background-color: rgba(192, 192, 192, 0.1);
    display: none; /* Hidden by default until loaded */
}

/* Modal content image section */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Rate limit message styling */
.rate-limit-notice {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #ff9800;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.rate-limit-notice i {
    margin-right: 0.5rem;
}

/* Submit button disabled state */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Announcement form wrapper */
.announcement-form-wrapper {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navbar scroll animation */
.navbar.scrolled {
    background: rgba(45, 45, 45, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Review cards animation on reviews page */
.review-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Add scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reviews page specific styles */
.reviews-page-section {
    padding: 7rem 0 5rem;
    min-height: 100vh;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Write review section */
.write-review-section {
    background: rgba(45, 45, 45, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    margin-bottom: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.write-review-section h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.review-info {
    color: var(--silver);
    margin-bottom: 1.5rem;
}

.write-review-btn {
    background: linear-gradient(135deg, var(--accent), var(--silver));
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

/* Review form */
.review-form-container {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    text-align: left;
    animation: fadeInUp 0.5s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

.form-group small {
    display: block;
    color: var(--silver);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

/* Star rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #444;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffd700;
}

/* Submit button */
.submit-review-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-review-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 76, 0.3);
}

.submit-review-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Quote button styling - Enhanced */
.quote-section {
    background: rgba(88, 101, 242, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    margin-top: 1rem;
}

.quote-info {
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
}

.quote-button {
    background: linear-gradient(135deg, var(--discord), #4752c4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752c4, var(--discord));
}

.quote-button i {
    font-size: 1.2rem;
}

/* Detail image fixes */
.detail-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    background-color: rgba(192, 192, 192, 0.1);
    display: none; /* Hidden by default until loaded */
}

/* Modal content image section */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Rate limit message styling */
.rate-limit-notice {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #ff9800;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.rate-limit-notice i {
    margin-right: 0.5rem;
}

/* Submit button disabled state */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Announcement form wrapper */
.announcement-form-wrapper {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
}
