:root {
    --primary: #ff4d4d;
    --secondary: #f9cb28;
    --discord: #5865F2;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #1a1a1a;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --accent-blue: #ff4d4d;
    --accent-hover: #ff4d4d;
    --text-primary: #f0f0f0;
    --text-secondary: #aaaaaa;
    --border-dark: #252525;
    --hover-bg: #1e1e1e;
    --checkbox-on: #f9cb28;
    --checkbox-off: #555;
    --tab-width: 120px;
    --settings-width: 250px;
    --announcement-primary: #ffffff;
    --announcement-primary-light: #eef2ffd8;
    --announcement-text: #ffffffc9;
    --announcement-success: #10b981;
    --announcement-warning: #f59e0b;
    --announcement-error: #ef4444;
}
.announcement-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

.announcement-bar {
    background: #171820;
    color: var(--announcement-text);
    padding: 2px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
    width: 60%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(67, 97, 238, 0.15);
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--announcement-primary);
}

.announcement-icon {
    font-size: 1.4rem;
    color: var(--announcement-primary);
    flex-shrink: 0;
}

.announcement-content {
    flex-grow: 1;
    font-weight: 500;
}

.announcement-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(0,0,0,0.05);
    color: #334155;
}

.announcement-link {
    color: var(--announcement-primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
}

.announcement-link:hover {
    text-decoration: underline;
}

/* Variants */
.announcement-success {
    background: #ecfdf5;
    border-color: rgba(16, 185, 129, 0.15);
}

.announcement-success::before {
    background: var(--announcement-success);
}

.announcement-success .announcement-icon {
    color: var(--announcement-success);
}

.announcement-warning {
    background: #fffbeb;
    border-color: rgba(245, 158, 11, 0.15);
}

.announcement-warning::before {
    background: var(--announcement-warning);
}

.announcement-warning .announcement-icon {
    color: var(--announcement-warning);
}

.announcement-error {
    background: #fef2f2;
    border-color: rgba(239, 68, 68, 0.15);
}

.announcement-error::before {
    background: var(--announcement-error);
}

.announcement-error .announcement-icon {
    color: var(--announcement-error);
}

/* Responsive */
@media (max-width: 768px) {
    .announcement-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .announcement-content {
        width: 100%;
    }
    
    .announcement-actions {
        align-self: flex-end;
    }
}
/* Futuristic scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #f9cb28, #ff4d4d);
    border-radius: 0;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff4d4d, #f9cb28);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow-x: hidden;
    color: var(--light);
    background-color: var(--dark);
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

/* Navigation */
#navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#navbar.show {
    top: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.1rem;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

/* Main Content */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
    line-height: 1.1;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

main h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 25px;
    margin-top: 3rem;
}

.btn {
    padding: 18px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.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: 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.buy-now {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.discord {
    background: linear-gradient(45deg, var(--discord), #7289da);
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn i {
    margin-right: 12px;
    font-size: 1.4rem;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 120px 20px;
    color: white;
    position: relative;
}

.section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    z-index: -1;
}

.section h2 {
    font-size: 3.5rem;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -15px;
    left: 25%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 77, 77, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Product Cards */
.product-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 15px;
    width: 350px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 77, 77, 0.3);
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
}

.price {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.product-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.product-card ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.product-card ul li:before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-card .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    align-self: center;
    width: 220px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    header h1 {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .section h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    header h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    main h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn {
        padding: 16px 30px;
    }
    
    .section {
        padding: 100px 20px;
    }
    
    .section h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        width: 100%;
        padding: 40px 30px;
    }
}
.section {
    padding: 2rem;
    
    color: white;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.image-card {
    position: relative;
    width: 700px;
    height: 600px;
    perspective: 1000px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    
}

.image-3d {
    width: 100%;
    height: 500%;
    transition: transform 1s ease;
    transform-style: preserve-3d;
}

.image-card img {
    width: 100%;
    height: 100%;
    
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-overlay h3 {
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.image-overlay p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* 360-degree 3D rotation on hover */
.image-card:hover .image-3d {
    transform: rotateY(360deg);
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

/* Optional: Add lighting/shadow for better 3D effect */
.image-card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Add these styles to your existing CSS */

/* Profile Button */
.profile-container {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1000;
}

.profile-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--gray), var(--dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1.2rem;
}

.profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: var(--secondary);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Profile Dropdown */
.profile-dropdown {
    position: absolute;
    top: 70px;
    right: 0;
    width: 350px;
    background: linear-gradient(145deg, var(--dark), var(--gray));
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Auth Forms */
.auth-forms {
    color: var(--light);
}

.auth-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

.auth-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

.form-toggle {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-toggle span {
    color: var(--secondary);
    cursor: pointer;
    text-decoration: underline;
}

.form-toggle span:hover {
    color: var(--primary);
}

/* Logged In View */
.logged-in-view {
    text-align: center;
}

.user-avatar {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.username {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.user-email {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-dropdown {
        width: 300px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .profile-dropdown {
        width: 280px;
    }
}
    /* Add these styles to your existing CSS */
    .settings-container {
        position: relative;
        display: inline-block;
        margin-left: 100rem;
    }
    
    .settings-btn {
        width: 50px;
        height: 50px;
        background: linear-gradient(145deg, var(--gray), var(--dark));
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        border: 2px solid rgba(255, 255, 255, 0.1);
        color: var(--light);
        font-size: 1.2rem;
    }
    
    .settings-btn:hover {
        background-color: #e0e0e0;
    }
    
    .settings-dropdown {
        display: none;
        position: absolute;
        right: 0;
        background-color: #fff;
        min-width: 250px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 1;
        border-radius: 5px;
        padding: 15px;
    }
    
    .settings-form {
        display: flex;
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .form-group input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    .form-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .save-btn, .cancel-btn {
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .save-btn {
        background-color: #4CAF50;
        color: white;
    }
    
    .cancel-btn {
        background-color: #f44336;
        color: white;
    }
/* Particles Rain Effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    border-radius: 2px;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
/* Discord Button Styles */
/* Discord Button with Hover Text Animation */
.discord-btn-hover {
    display: inline-flex;
    align-items: center;
    background-color: #5865F2;
    color: white;
    padding: 12px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3);
    overflow: hidden;
    width: 50px; /* Initial width - fits just the icon */
    height: 50px;
    position: relative;
}

.discord-btn-hover i {
    font-size: 24px;
    min-width: 22px;
    transition: all 0.3s ease;
}

.discord-btn-hover span {
    opacity: 0;
    width: 0;
    padding-left: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover Effects */
.discord-btn-hover:hover {
    width: 140px; /* Expanded width */
    background-color: #4752c4;
}

.discord-btn-hover:hover i {
    transform: rotate(10deg);
}

.discord-btn-hover:hover span {
    opacity: 1;
    width: auto;
    padding-left: 10px;
    animation: fadeInRight 1.9s ease;
}

/* Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.menu-wrapper {
    display: flex;
    width: 700px;
    height: 500px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tabs {
    width: var(--tab-width);
    background-color: #1a1a1a;
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
}

.tab {
    padding: 15px;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.tab i {
    margin-right: 8px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.tab.active {
    background-color: var(--bg-dark);
    color: var(--accent-blue);
    border-right: 3px solid var(--accent-blue);
}

.tab:hover:not(.active) {
    background-color: var(--hover-bg);
    color: var(--accent-hover);
}

.menu-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-header {
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-dark);
}

.menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 5px 0;
    display: none;
}

.menu-content.active {
    display: block;
}

.menu-section {
    margin-bottom: 10px;
}

.section-header {
    background-color: #1a1a1a;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 8px;
    font-size: 14px;
}

.section-content {
    padding: 5px 0;
}

.menu-item {
    padding: 9px 15px 9px 30px;
    font-size: 13.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.15s ease;
    position: relative;
    cursor: pointer;
}

.menu-item:hover {
    background-color: var(--hover-bg);
}

.menu-item:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-blue);
}

.menu-item.active {
    background-color: #252525;
}

.value {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
}

/* Checkbox Styles */
.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--checkbox-off);
    border-radius: 4px;
    transition: all 0.2s;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #666;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--checkbox-on);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Settings Panel */
.settings-panel {
    width: var(--settings-width);
    background-color: #1a1a1a;
    border-left: 1px solid var(--border-dark);
    overflow-y: auto;
    padding: 15px;
    display: none;
}

.settings-panel.active {
    display: block;
}

.settings-header {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
}

.settings-header i {
    margin-right: 8px;
}

.settings-group {
    margin-bottom: 20px;
}

.settings-title {
    font-size: 13px;
    color: var(--accent-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.settings-title i {
    margin-right: 8px;
    font-size: 12px;
}

.settings-control {
    margin-bottom: 12px;
}

.settings-label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.settings-input {
    width: 100%;
    padding: 6px 8px;
    background-color: #252525;
    border: 1px solid #333;
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 13px;
}

.settings-input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* Range Slider */
.range-slider {
    width: 100%;
    margin-top: 5px;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: #333;
    border-radius: 2px;
    outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent-blue);
    border-radius: 50%;
    cursor: pointer;
}

/* Scrollbar styling */
.menu-content::-webkit-scrollbar,
.settings-panel::-webkit-scrollbar {
    width: 6px;
}

.menu-content::-webkit-scrollbar-thumb,
.settings-panel::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 3px;
}

.menu-content::-webkit-scrollbar-track,
.settings-panel::-webkit-scrollbar-track {
    background-color: #1a1a1a;
}

.download-btn-hover {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3);
    overflow: hidden;
    width: 50px; /* Initial width - fits just the icon */
    height: 50px;
    position: relative;
  }
  
  .download-btn-hover span {
    opacity: 0;
    width: 0;
    padding-left: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover Effects */
.download-btn-hover:hover {
    width: 140px; /* Expanded width */
    background-color: #f5e235;
}

.download-btn-hover:hover i {
    transform: rotate(10deg);
}

.download-btn-hover:hover span {
    opacity: 1;
    width: auto;
    padding-left: 10px;
    animation: fadeInRight 1.9s ease;
}
.feedback-container {
    background-color: var(--gray);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }

  .feedback-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }

  .feedback-title {
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .feedback-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .rating-container {
    margin-bottom: 25px;
  }

  .rating-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 500;
  }

  .rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .star {
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 2.5rem;
    position: relative;
  }

  .star:hover {
    transform: scale(1.1);
  }

  .star.active {
    color: var(--secondary);
    transform: scale(1.1);
  }

  .star.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
  }

  .feedback-input-container {
    margin-bottom: 25px;
  }

  .feedback-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 500;
  }

  .feedback-input {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
    transition: var(--transition);
  }

  .feedback-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.2);
  }

  .feedback-submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .feedback-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
  }

  .feedback-submit:disabled {
    background-color: var(--text-secondary);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .thank-you-message {
    text-align: center;
    padding: 30px;
    display: none;
  }

  .thank-you-message.visible {
    display: block;
  }

  .thank-you-title {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .thank-you-text {
    color: var(--text-primary);
    margin-bottom: 20px;
  }

  .emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
  }

  .loader {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .error-message {
    color: var(--primary);
    text-align: center;
    margin-top: 15px;
    display: none;
  }
  .copyright-footer {
    background: linear-gradient(135deg, #1e1e2e, #2a2a3a);
    color: #fff;
    padding: 40px 0 25px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 32px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: #fff;
    transform: translateY(-3px);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.company-name {
    font-weight: 600;
    color: #fff;
}

.legal-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legal-links a:hover {
    color: #fff;
}

.legal-links a i {
    font-size: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .copyright-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-left: 0;
    }
    
    .legal-links a {
        margin-left: 0;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-methods i {
        font-size: 28px;
    }
}