/* ========================================
   CYBER / HACKER THEME - FRG SHOP
   Swap with styles_new.css for original
   ======================================== */

/* Cyber Keyframes */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes glitch {
    0%, 100% { text-shadow: 2px 0 #0ff, -2px 0 #f0f; }
    25% { text-shadow: -2px 0 #0ff, 2px 0 #f0f; }
    50% { text-shadow: 2px 2px #0ff, -2px -2px #f0f; }
    75% { text-shadow: -2px 2px #0ff, 2px -2px #f0f; }
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(0, 255, 200, 0.3); box-shadow: 0 0 10px rgba(0, 255, 200, 0.1); }
    50% { border-color: rgba(0, 255, 200, 0.6); box-shadow: 0 0 20px rgba(0, 255, 200, 0.2); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-shadow: 0 0 4px rgba(0, 255, 200, 0.15);
}

body, html {
    font-family: 'Oswald', sans-serif;
    scroll-behavior: smooth;
    background-color: #060a0d;
    background-image:
        /* Vignette */
        radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.6) 100%),
        /* Subtle ambient glow spots */
        radial-gradient(ellipse at 15% 30%, rgba(0, 255, 200, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(0, 170, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(0, 255, 200, 0.02) 0%, transparent 40%),
        /* Terminal grid - small dots at intersections */
        radial-gradient(circle, rgba(0, 255, 200, 0.07) 1px, transparent 1px),
        /* Horizontal faint lines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(0, 255, 200, 0.03) 39px,
            rgba(0, 255, 200, 0.03) 40px
        ),
        /* Vertical faint lines */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            rgba(0, 255, 200, 0.03) 39px,
            rgba(0, 255, 200, 0.03) 40px
        );
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        40px 40px,
        100% 40px,
        40px 100%;
    background-attachment: fixed;
    color: rgb(200, 220, 210);
}

/* Scanline overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 200, 0.015) 2px,
        rgba(0, 255, 200, 0.015) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

.product-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border-radius: 8px;
}

.product-icon {
    max-width: 128px;
    max-height: 128px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 255, 200, 0.3));
}

.background-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 369px;
    height: 369px;
    background-image: url('frg_small_ic.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    filter: hue-rotate(120deg) saturate(2);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(5, 10, 15, 0.92);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 200, 0.15);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.logo a {
    color: #0ffa;
    font-size: 28px;
    font-weight: bold;
}

.logo-image2 {
    width: 150px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 50px;
}

.nav-links li {
    margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

.nav-links a {
    color: rgba(200, 220, 210, 0.85);
    font-size: 18px;
    transition: color 0.3s, text-shadow 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
}

.nav-links a:hover {
    color: rgb(0, 255, 200);
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5), 0 0 20px rgba(0, 255, 200, 0.2);
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    color: rgb(0, 255, 200);
    font-size: 28px;
    cursor: pointer;
}

/* Section Styles */
.section {
    padding: 100px 50px;
    opacity: 0;
    transform: translateY(50px);
    color: rgb(200, 220, 210);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-nobg {
    padding: 100px 50px;
    opacity: 1;
    transform: translateY(50px);
    color: rgb(200, 220, 210);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-nobg.reveal {
    opacity: 1;
    background-color: transparent;
    color: rgb(200, 220, 210);
    transform: translateY(0);
}

.section.reveal {
    opacity: 1;
    background-color: rgba(5, 10, 15, 0.4);
    backdrop-filter: blur(30px);
    color: rgb(200, 220, 210);
    transform: translateY(0);
}

.active-link {
    color: rgb(0, 255, 200) !important;
    border-bottom: 2px solid rgb(0, 255, 200);
}

/* Section Headers */
.section-header h1 {
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    font-size: 42px;
    color: rgb(0, 255, 200);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: glitch 4s infinite;
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5), 0 0 30px rgba(0, 255, 200, 0.2);
}

.section-header h2 {
    font-size: 48px;
    color: rgb(0, 255, 200);
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    letter-spacing: 4px;
}

.section-header a {
    color: rgb(0, 170, 255);
}

.section-header {
    font-size: 32px;
    color: rgb(200, 220, 210);
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Product List */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
}

/* Product Panel Styles */
.product-panel {
    background: linear-gradient(145deg, rgba(10, 15, 20, 0.85), rgba(5, 10, 15, 0.9));
    backdrop-filter: blur(25px);
    color: rgb(200, 220, 210);
    margin: 15px;
    padding: 20px;
    width: 30%;
    border-radius: 4px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(0, 255, 200, 0.05);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 255, 200, 0.12);
    position: relative;
}

/* Corner accents */
.product-panel::before,
.product-panel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(0, 255, 200, 0.4);
    border-style: solid;
    transition: border-color 0.3s ease;
}

.product-panel::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.product-panel::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.product-panel.reveal {
    opacity: 1;
    transform: translateY(0);
}

.product-panel:hover {
    transform: translateY(0) scale(1.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-color: rgba(0, 255, 200, 0.5);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 255, 200, 0.1),
        inset 0 1px 0 rgba(0, 255, 200, 0.1);
}

.product-panel:hover::before,
.product-panel:hover::after {
    border-color: rgba(0, 255, 200, 0.8);
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-content h2 {
    min-height: 60px;
    margin-bottom: 10px;
    word-wrap: break-word;
    font-weight: 900;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    color: rgb(230, 245, 240);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    margin-top: auto;
}

.product-info p {
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200, 220, 210, 0.7);
}

.product-info p i {
    margin-right: 8px;
    color: rgb(0, 255, 200);
}

/* Button Styles */
.btn-default {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: transparent;
    color: rgb(0, 255, 200);
    border-radius: 2px;
    font-weight: 900;
    width: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 255, 200, 0.5);
    cursor: pointer;
    font-size: 16px;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-default:hover {
    background-color: rgba(0, 255, 200, 0.15);
    color: rgb(0, 255, 200);
    border-color: rgb(0, 255, 200);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.2), inset 0 0 20px rgba(0, 255, 200, 0.05);
    transform: scale(1.02);
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.6);
}

/* Reveal Animation for Sections */
.store-section {
    opacity: 0;
    transform: translateY(50px);
}

.store-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Server List */
.server-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
}

/* Server Panel Styles */
.server-panel {
    background: linear-gradient(145deg, rgba(10, 15, 20, 0.85), rgba(5, 10, 15, 0.9));
    backdrop-filter: blur(25px);
    color: rgb(200, 220, 210);
    margin: 15px;
    padding: 20px;
    width: 30%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 255, 200, 0.12);
}

.server-panel.reveal {
    opacity: 1;
    transform: translateY(0);
}

.server-panel:hover {
    transform: translateY(0) scale(1.03);
    transition: transform 0.3s ease;
    border-color: rgba(0, 255, 200, 0.4);
}

.server-panel h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.server-panel p {
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-panel p i {
    margin-right: 8px;
    color: rgb(0, 255, 200);
}

.server-panel .button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 255, 200, 0.2);
    border: rgba(0, 0, 0, 0.5) 1px;
    border-radius: 0 0 4px 4px;
}

.server-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.server-content h2 {
    min-height: 30px;
    font-size: medium;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.server-info {
    margin-top: auto;
}

.server-info p {
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reveal Animation for Sections */
.servers-section {
    opacity: 1;
    transform: translateY(50px);
    animation: fadeIn;
}

.servers-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* User Info Styles */
.user-info {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(0, 255, 200, 0.4);
}

.user-name {
    color: rgb(0, 255, 200);
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
}

/* Login Button */
.login-button a img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.login-button a img:hover {
    transform: scale(1.05);
}

.logout-form .logout-button {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 2px;
    border: 1px solid rgba(0, 255, 200, 0.3);
    background-color: transparent;
    font-weight: 600;
    color: rgba(200, 220, 210, 0.8);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
}

.logout-form .logout-button:hover {
    background-color: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.6);
    color: rgb(0, 255, 200);
}

/* Status Box Styles */
.status {
    background: linear-gradient(145deg, rgba(10, 15, 20, 0.9), rgba(5, 10, 15, 0.95));
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 200, 0.15);
}

.status h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: rgb(0, 255, 200);
    font-family: 'Share Tech Mono', 'Oswald', monospace;
}

.status p {
    font-size: 18px;
    margin-bottom: 15px;
}

.status p strong {
    color: rgb(0, 255, 200);
}

.status p:last-child {
    margin-top: 30px;
    font-size: 20px;
    color: rgb(0, 255, 200);
}

/* Success Icon */
.section-header i {
    color: rgb(0, 255, 200);
    margin-right: 10px;
}

/* Promotion Banner Styles */
.promotion-banner {
    background: linear-gradient(90deg, rgba(0, 255, 200, 0.12), rgba(0, 170, 255, 0.12));
    padding: 15px;
    border-radius: 2px;
    margin-top: 20px;
    text-align: center;
    color: rgb(200, 220, 210);
    font-size: 18px;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 200, 0.2);
    animation: borderGlow 3s infinite;
}

.promotion-banner p {
    margin: 0;
}

.promotion-banner strong {
    color: rgb(0, 255, 200);
}

.promotion-banner p::before {
    content: '';
}

/* Gift Button Styles */
.btn-gift {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background-color: transparent;
    color: rgba(0, 170, 255, 0.9);
    border-radius: 2px;
    font-weight: 700;
    width: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 170, 255, 0.35);
    cursor: pointer;
    font-size: 14px;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-gift:hover {
    background-color: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.7);
    color: rgb(0, 170, 255);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.15);
    transform: scale(1.02);
}

.btn-gift i {
    margin-right: 6px;
}

/* Gift Modal Styles */
.gift-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.gift-modal-content {
    background: linear-gradient(145deg, rgba(10, 15, 20, 0.98), rgba(5, 8, 12, 0.98));
    padding: 30px;
    border-radius: 4px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 255, 200, 0.08);
    border: 1px solid rgba(0, 255, 200, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.gift-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(200, 220, 210, 0.5);
    transition: color 0.2s ease;
}

.gift-modal-close:hover {
    color: rgb(0, 255, 200);
}

.gift-modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: rgb(200, 220, 210);
    font-size: 24px;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    letter-spacing: 2px;
}

.gift-modal-content h2 i {
    color: rgb(0, 255, 200);
    margin-right: 10px;
}

.gift-product-name {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: rgb(0, 255, 200);
    margin-bottom: 5px;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
}

.gift-product-price {
    text-align: center;
    font-size: 18px;
    color: rgba(0, 255, 200, 0.7);
    margin-bottom: 25px;
    font-family: 'Share Tech Mono', monospace;
}

.gift-input-group {
    margin-bottom: 20px;
}

.gift-input-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(200, 220, 210, 0.9);
    font-size: 14px;
}

.gift-input-group input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 255, 200, 0.25);
    border-radius: 2px;
    background-color: rgba(0, 10, 8, 0.5);
    color: rgb(0, 255, 200);
    font-size: 16px;
    font-family: 'Share Tech Mono', monospace;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gift-input-group input[type="text"]:focus {
    outline: none;
    border-color: rgb(0, 255, 200);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.15);
}

.gift-input-group input[type="text"]::placeholder {
    color: rgba(0, 255, 200, 0.3);
}

.gift-input-group small {
    display: block;
    margin-top: 8px;
    color: rgba(200, 220, 210, 0.4);
    font-size: 12px;
}

.btn-lookup {
    width: 100%;
    padding: 14px 20px;
    background-color: transparent;
    color: rgb(0, 170, 255);
    border: 1px solid rgba(0, 170, 255, 0.4);
    border-radius: 2px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-lookup:hover:not(:disabled) {
    background-color: rgba(0, 170, 255, 0.1);
    border-color: rgb(0, 170, 255);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.15);
}

.btn-lookup:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-lookup i {
    margin-right: 8px;
}

.gift-error {
    margin-top: 15px;
    padding: 12px;
    background-color: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 2px;
    color: rgb(255, 80, 80);
    text-align: center;
    font-size: 14px;
    display: none;
}

.gift-error:not(:empty) {
    display: block;
}

/* Recipient Card Styles */
.gift-recipient-card {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(10, 20, 18, 0.8), rgba(5, 12, 10, 0.8));
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 200, 0.15);
}

.recipient-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 200, 0.5);
    margin-right: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.15);
}

.recipient-info {
    flex: 1;
}

.recipient-info h3 {
    color: rgb(0, 255, 200);
    font-size: 20px;
    margin-bottom: 5px;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
}

.recipient-steamid {
    color: rgba(200, 220, 210, 0.5);
    font-size: 12px;
    margin-bottom: 10px;
    font-family: 'Share Tech Mono', monospace;
}

.recipient-profile-link {
    color: rgb(0, 170, 255);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.recipient-profile-link:hover {
    color: rgb(100, 200, 255);
    text-decoration: underline;
}

.recipient-profile-link i {
    margin-right: 5px;
}

/* Gift Confirmation Checkbox */
.gift-confirm-section {
    margin-bottom: 25px;
}

.gift-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: rgba(200, 220, 210, 0.9);
    font-size: 14px;
    line-height: 1.5;
    padding: 15px;
    background-color: rgba(0, 10, 8, 0.3);
    border-radius: 2px;
    border: 1px solid rgba(0, 255, 200, 0.1);
    transition: border-color 0.2s ease;
}

.gift-checkbox-label:hover {
    border-color: rgba(0, 255, 200, 0.3);
}

.gift-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: rgb(0, 255, 200);
    flex-shrink: 0;
}

.gift-checkbox-label strong {
    color: rgb(0, 255, 200);
}

/* Gift Modal Buttons */
.gift-buttons {
    display: flex;
    gap: 15px;
}

.btn-back {
    padding: 14px 20px;
    background-color: transparent;
    color: rgba(200, 220, 210, 0.7);
    border: 1px solid rgba(200, 220, 210, 0.2);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
}

.btn-back:hover {
    background-color: rgba(200, 220, 210, 0.05);
    border-color: rgba(200, 220, 210, 0.4);
}

.btn-back i {
    margin-right: 6px;
}

.gift-form {
    flex: 1;
}

.btn-gift-confirm {
    width: 100%;
    padding: 14px 20px;
    background-color: transparent;
    color: rgb(0, 255, 200);
    border: 1px solid rgba(0, 255, 200, 0.5);
    border-radius: 2px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Share Tech Mono', 'Oswald', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-gift-confirm:hover:not(:disabled) {
    background-color: rgba(0, 255, 200, 0.15);
    border-color: rgb(0, 255, 200);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 200, 0.2);
}

.btn-gift-confirm:disabled {
    background-color: transparent;
    color: rgba(200, 220, 210, 0.3);
    border-color: rgba(200, 220, 210, 0.1);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
.nav-links.active {
    display: flex;
}

@media (max-width: 768px) {
    .product-panel {
        width: 80%;
    }

    .navbar-container {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: rgba(5, 10, 15, 0.95);
        flex-direction: column;
        width: 200px;
        display: none;
        border: 1px solid rgba(0, 255, 200, 0.15);
        margin-left: 0;
    }

    .nav-links li {
        margin: 20px 0;
        text-align: right;
        margin-right: 20px;
    }

    .nav-links.show,
    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
        order: 1;
        margin-left: auto;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 80%;
    }

    .server-panel {
        width: 80%;
    }

    .user-info {
        order: 3;
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }

    .status {
        padding: 20px;
    }

    .status h4 {
        font-size: 22px;
    }

    .status p {
        font-size: 16px;
    }

    /* Responsive Gift Modal */
    .gift-modal-content {
        padding: 20px;
        margin: 10px;
        width: calc(100% - 20px);
    }

    .gift-recipient-card {
        flex-direction: column;
        text-align: center;
    }

    .recipient-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .gift-buttons {
        flex-direction: column;
    }

    .btn-back {
        order: 2;
    }

    .gift-form {
        order: 1;
    }
}
