:root {
    --teal: #00ffff;
    --teal-dark: #00cccc;
    --orange: #ff6600;
    --orange-dark: #cc5500;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-glow: rgba(0, 255, 255, 0.3);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    position: relative;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 102, 0, 0.05) 50%, transparent 70%);
    z-index: -1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Buttons */
.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    box-shadow: 0 0 30px rgba(220, 53, 69, 0.6);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.delete-order-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 53, 69, 0.3);
}

.btn-card {
    width: 100%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
    color: var(--bg-dark);
    font-weight: 700;
    margin-top: 20px;
}

.btn-card:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Server Cards */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.server-card:hover {
    border-color: var(--teal);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.server-card.featured {
    border: 2px solid var(--orange);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.server-card.featured:hover {
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.4);
}

.server-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.server-card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--teal);
}

.server-badge {
    background: linear-gradient(135deg, var(--teal), var(--orange));
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.server-specs {
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.spec-value {
    color: var(--text-primary);
    text-align: right;
    flex: 1;
    margin-left: 20px;
}

.server-pricing {
    background: rgba(0, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Proxies Section */
.proxies-section {
    background: rgba(0, 255, 255, 0.02);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}

.proxies-content {
    max-width: 900px;
    margin: 0 auto;
}

.proxy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--teal);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-secondary);
}

.proxy-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
}

.proxy-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Legal Section */
.legal-section {
    background: rgba(255, 102, 0, 0.02);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
}

.legal-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
}

.discord-embed-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.discord-embed-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.discord-fallback-card {
    background: #e0e0e0;
    border: 1px solid var(--teal);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.discord-fallback-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.discord-fallback-message {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.discord-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-glow);
    padding: 30px 20px;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .spec-item {
        flex-direction: column;
        gap: 5px;
    }

    .spec-value {
        text-align: left;
        margin-left: 0;
    }
}

/* Scroll animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Animated Lines Container */
#animated-lines-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Header Updates */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.auth-buttons, .user-menu {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.user-info {
    color: var(--text-secondary);
    margin-right: 10px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
    margin: 0;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    margin: 20px 0 10px;
    font-size: 2rem;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6666;
    padding: 12px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--teal);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Dashboard */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.dashboard-sidebar {
    width: 250px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-glow);
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glow);
    overflow: hidden;
}

.sidebar-header .logo-text {
    font-size: 1.5rem;
    letter-spacing: 1px;
    white-space: nowrap;
    word-break: keep-all;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--teal);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 102, 0, 0.2));
    color: var(--teal);
    border-left: 3px solid var(--teal);
}

.dashboard-main {
    flex: 1;
    margin-left: 250px;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glow);
}

.dashboard-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    font-size: 2rem;
}

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

.dashboard-content {
    max-width: 1200px;
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.stat-card h3 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
}

.recent-activity {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 20px;
}

.recent-activity h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    margin-bottom: 20px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-darker);
    border-radius: 5px;
}

.activity-icon {
    font-size: 1.5rem;
}

.activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.activity-content strong {
    color: var(--text-primary);
}

.activity-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.activity-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

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

.servers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.server-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 20px;
}

.server-item h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    margin-bottom: 10px;
}

.server-item p {
    color: var(--text-secondary);
    margin: 5px 0;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.status-active {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.status-suspended {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.order-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-form {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
}

.ip-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ip-item {
    padding: 10px;
    background: var(--bg-darker);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ip-item small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.logs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.log-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 20px;
}

.log-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.log-content {
    background: var(--bg-darker);
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

.log-content pre {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .dashboard-main {
        margin-left: 0;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
    }

    .nav-item {
        white-space: nowrap;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Order Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
}

.status-payment-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.status-payment-received {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.5);
}

.status-order-being-prepared {
    background: rgba(255, 102, 0, 0.2);
    color: var(--orange);
    border: 1px solid rgba(255, 102, 0, 0.5);
}

.status-delivered {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.5);
}

.payment-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: capitalize;
}

.payment-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.payment-unconfirmed {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.5);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 170, 0, 0.6);
    }
}

.payment-received {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.payment-failed {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Payment Section */
.payment-section {
    margin-top: 20px;
    padding: 25px;
    background: rgba(0, 255, 255, 0.08);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.payment-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.payment-amount {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border-glow);
}

.payment-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.ltc-amount-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.usd-equivalent {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 5px;
}

.qr-code-container {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border-glow);
}

.payment-qr-code {
    width: 200px;
    height: 200px;
    border: 3px solid var(--teal);
    border-radius: 8px;
    background: white;
    padding: 10px;
    margin: 0 auto;
    display: block;
}

.qr-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 10px;
}

.litecoin-address-container {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--border-glow);
    margin-top: 8px;
}

.litecoin-address {
    font-family: 'Courier New', monospace;
    color: var(--teal);
    word-break: break-all;
    flex: 1;
    font-size: 0.9rem;
    background: transparent;
    padding: 0;
    margin: 0;
}

.btn-copy-address {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--teal);
    color: var(--teal);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-copy-address:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.payment-actions {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 15px;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.order-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-value {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
}

/* Payment Status Indicator */
.payment-status-indicator {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--teal);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.status-message {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.status-icon {
    font-size: 1.5rem;
    animation: spin 2s linear infinite;
}

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

.status-text {
    font-weight: 600;
    color: var(--teal);
    font-size: 1.1rem;
}

.status-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Payment Steps Guide */
.payment-steps {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.payment-instructions {
    list-style: decimal;
    padding-left: 25px;
    color: var(--text-primary);
    line-height: 1.8;
}

.payment-instructions li {
    margin: 10px 0;
    color: var(--text-secondary);
}

.payment-instructions li strong {
    color: var(--teal);
}

/* Payment Note */
.payment-note {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.payment-note p {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-note ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.payment-note li {
    color: var(--text-secondary);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.payment-note li:before {
    content: "→";
    color: var(--orange);
    position: absolute;
    left: 0;
}

/* Payment status updates */
.payment-status-indicator.status-unconfirmed {
    border-color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
}

.payment-status-indicator.status-unconfirmed .status-icon {
    animation: none;
}

.payment-status-indicator.status-unconfirmed .status-text {
    color: #ffaa00;
}

.payment-status-indicator.status-confirmed {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    animation: none;
}

.payment-status-indicator.status-confirmed .status-icon {
    animation: none;
}

.payment-status-indicator.status-confirmed .status-text {
    color: #00ff00;
}

@media (max-width: 768px) {
    .payment-info {
        grid-template-columns: 1fr;
    }
    
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-steps {
        padding: 15px;
    }
    
    .payment-instructions {
        font-size: 0.9rem;
    }
}

.pay-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #bfbbbb 0%, #8b8686 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pay-now-btn:hover {
    background: linear-gradient(135deg, #8b8686 0%, #bfbbbb 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 187, 187, 0.4);
}

.litecoin-logo {
    font-size: 1.2em;
    font-weight: bold;
}

.order-item {
    border-left: 3px solid var(--teal);
}

/* Pricing Management Styles */
.pricing-category {
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--teal);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.pricing-card h5 {
    color: var(--teal);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-details {
    margin-bottom: 15px;
}

.pricing-details p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.pricing-details strong {
    color: var(--text-primary);
}

.pricing-edit-form {
    padding: 20px;
}

.pricing-edit-form h4 {
    color: var(--teal);
    margin-bottom: 20px;
}

.tier-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.tier-item .form-group {
    margin-bottom: 10px;
}

.remove-tier-btn {
    margin-top: 10px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff6666;
}

.remove-tier-btn:hover {
    background: rgba(255, 0, 0, 0.3);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

/* Admin Panel Styles */
.admin-badge {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 102, 0, 0.3));
    color: #ff0000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.admin-order-item {
    margin-bottom: 20px;
}

/* Tokens Management Styles */
.tokens-summary {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-glow);
}

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

.token-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.token-item:hover {
    border-color: var(--teal);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.token-item.token-available {
    border-left: 4px solid #00ff88;
}

.token-item.token-unavailable {
    border-left: 4px solid #ff6b6b;
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-glow);
}

.token-header h4 {
    margin: 0;
    color: var(--text-primary);
}

.token-status {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.token-status-available {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.token-status-unavailable {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.token-info {
    margin-bottom: 15px;
}

.token-info p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.token-order-info {
    background: rgba(0, 255, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.token-order-info h4 {
    margin: 0 0 10px 0;
    color: var(--teal);
    font-size: 1em;
}

.token-order-info p {
    margin: 5px 0;
    font-size: 0.9em;
}

.token-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.token-actions .btn {
    flex: 1;
}

.success-message {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 12px;
    border-radius: 5px;
    margin: 15px 0;
    font-size: 0.9em;
}

/* Proxy Availability Styles */
.proxy-availability-info {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.proxy-availability-info.available {
    border-left: 4px solid #00ff88;
}

.proxy-availability-info.unavailable {
    border-left: 4px solid #ff6b6b;
}

.proxy-availability-info h4 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
}

.availability-count {
    font-size: 1.2em;
    font-weight: 600;
    margin: 10px 0;
    color: var(--teal);
}

.availability-warning {
    color: #ff6b6b;
    margin: 10px 0 0 0;
    font-weight: 600;
}

/* Server Stock Info */
.server-stock-info {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.server-stock-info p {
    margin: 0;
    color: var(--text-secondary);
}

/* Stock Management Styles */
.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.stock-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 20px;
}

.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-glow);
}

.stock-header h4 {
    margin: 0;
}

.stock-badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.stock-badge.stock-in-stock {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.stock-badge.stock-out-of-stock {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.stock-info p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.stock-actions {
    margin-top: 15px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-glow);
}

.order-status-badges {
    display: flex;
    gap: 10px;
}

.order-info {
    margin-bottom: 15px;
}

.order-info code {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--teal);
}

.order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.status-select {
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    padding: 8px 12px;
    font-family: 'Rajdhani', sans-serif;
}

.credentials-section {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-darker);
    margin: 5% auto;
    padding: 30px;
    border: 2px solid var(--border-glow);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--teal);
}

.order-details-content {
    color: var(--text-primary);
}

.order-details-content h4 {
    color: var(--teal);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.order-details-content p {
    margin: 10px 0;
    color: var(--text-secondary);
}

.sidebar-footer {
    margin-top: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* User Credentials Section */
.credentials-section-user {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 5px;
}

.view-credentials-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 102, 0, 0.3));
    border: 1px solid var(--teal);
    color: var(--teal);
    font-weight: 600;
}

.view-credentials-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.5), rgba(255, 102, 0, 0.5));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

/* Credentials Display Modal */
.credentials-display {
    margin-top: 20px;
}

.credential-item {
    margin-bottom: 20px;
}

.credential-item label {
    display: block;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Orbitron', sans-serif;
}

.credential-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credential-value code {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: var(--teal);
    word-break: break-all;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.copy-btn {
    white-space: nowrap;
    padding: 8px 16px;
}

.credentials-warning {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 5px;
    text-align: center;
}

.credentials-warning p {
    color: #ffc107;
    margin: 0;
    font-weight: 600;
}

/* Admin Credentials Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Rajdhani', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Proxy Ordering Styles */
.proxy-pricing-info {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.proxy-pricing-info h4 {
    color: var(--teal);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

.proxy-pricing-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proxy-pricing-info li {
    color: var(--text-secondary);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.proxy-pricing-info li:before {
    content: "•";
    color: var(--teal);
    position: absolute;
    left: 0;
}

.pricing-note {
    color: var(--orange);
    font-style: italic;
    margin-top: 10px;
}

.price-display {
    display: block;
    color: var(--teal);
    font-weight: 600;
    margin-top: 5px;
}

/* Proxies Display */
.proxies-display {
    margin-top: 20px;
}

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

.proxies-textarea {
    width: 100%;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    color: var(--teal);
    font-size: 0.9rem;
    line-height: 1.6;
    resize: vertical;
}

.proxies-textarea-small {
    width: 100%;
    min-height: 200px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    color: var(--teal);
    font-size: 0.85rem;
    line-height: 1.6;
    resize: vertical;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Notification System Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

.notification {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--teal);
}

.notification-success::before {
    background: #00ff00;
}

.notification-error::before {
    background: #ff4444;
}

.notification-warning::before {
    background: var(--orange);
}

.notification-info::before {
    background: var(--teal);
}

.notification-message {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-icon {
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    color: #00ff00;
}

.notification-error .notification-icon {
    color: #ff4444;
}

.notification-warning .notification-icon {
    color: var(--orange);
}

.notification-info .notification-icon {
    color: var(--teal);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-dialog {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 255, 255, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.show .modal-dialog {
    transform: scale(1);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-message {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.modal-input {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.2s ease;
}

.modal-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-buttons .btn {
    min-width: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification {
        min-width: auto;
        max-width: none;
    }

    .modal-dialog {
        width: 95%;
        padding: 20px;
    }
}

