/* style.css - BakwanJagung Store Theme - Orange & Hitam Murni */
/* Reset dan Base Styling */
:root {
    --primary-orange: #ff8c00;
    --secondary-orange: #ff6b00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.95);
    --border-orange: rgba(255, 140, 0, 0.3);
    --border-dark: #333;
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-gray: #aaaaaa;
    --text-dark: #666666;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --shadow-orange: rgba(255, 140, 0, 0.2);
    --success: #00ff88;
    --warning: #ffaa00;
    --danger: #ff4444;
}

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

body {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-white);
    min-height: 100vh;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.block {
    display: block;
}

/* Logo */
.server-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
    transition: all 0.3s ease;
}

.server-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.7));
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
    padding: 15px;
}

.modal-content {
    background: linear-gradient(145deg, 
        rgba(30, 30, 30, 0.98), 
        rgba(20, 20, 20, 0.98));
    border: 1px solid var(--border-orange);
    border-radius: 16px;
    padding: 24px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-wide {
    max-width: 700px;
}

/* style.css - Bagian User Info Bar */

/* User Info Bar - MOBILE FRIENDLY */
.user-info-bar {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--border-orange);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
}

.user-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.user-left-section {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.user-details {
    margin-left: 12px;
    min-width: 0;
    flex: 1;
}

.user-nickname {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.user-account-type {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: capitalize;
    opacity: 0.8;
}

.user-actions {
    display: flex;
    gap: 8px;
    margin-left: 10px;
    flex-shrink: 0;
}

/* Skin Image */
.skin-img {
    image-rendering: pixelated;
    border: 2px solid var(--border-orange);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Badge untuk pending */
.badge-pending {
    background: rgba(255, 170, 0, 0.2);
    color: var(--warning);
    border: 1px solid rgba(255, 170, 0, 0.3);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .user-info-bar {
        padding: 8px 0;
    }
    
    .user-details {
        margin-left: 10px;
    }
    
    .user-nickname {
        font-size: 15px;
        max-width: 120px;
    }
    
    .user-account-type {
        font-size: 11px;
    }
    
    .skin-img {
        width: 36px;
        height: 36px;
    }
    
    .badge-pending {
        font-size: 9px;
        padding: 2px 6px;
        margin-left: 6px;
    }
    
    .user-actions {
        gap: 6px;
    }
    
    .mobile-header-btn .btn-text {
        display: none;
    }
    
    .mobile-header-btn i {
        margin-right: 0;
        font-size: 14px;
    }
    
    .header-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .user-nickname {
        max-width: 180px;
    }
    
    .user-actions .btn-text {
        display: inline;
    }
}

@media (min-width: 1024px) {
    .user-nickname {
        max-width: 200px;
    }
    
    .user-actions .btn-text {
        display: inline;
    }
}

/* Header Button - MOBILE FRIENDLY */
.header-btn {
    background: transparent;
    border: 1px solid var(--border-orange);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.mobile-header-btn {
    padding: 6px 8px !important;
}

.mobile-header-btn .btn-text {
    display: inline;
}

.header-btn:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-orange);
    transform: translateY(-1px);
}

.header-btn i {
    margin-right: 5px;
    font-size: 12px;
}

/* Admin Navigation - MOBILE FRIENDLY */
.admin-nav {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--border-orange);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 8px 0;
}

.admin-nav .container {
    padding: 0 15px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 0 2px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-orange);
}

.nav-link.active {
    background: rgba(255, 140, 0, 0.2);
    color: var(--primary-orange);
    border: 1px solid var(--border-orange);
}

/* Card */
.card {
    background: linear-gradient(145deg, 
        rgba(30, 30, 30, 0.9), 
        rgba(20, 20, 20, 0.95));
    border: 1px solid var(--border-orange);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-dark);
    margin-top: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-orange);
    border-color: var(--primary-orange);
}

/* Button */
.btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: rgba(30, 30, 30, 0.8);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.05);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 14px !important;
    font-size: 13px !important;
}

.btn-xs {
    padding: 4px 10px !important;
    font-size: 12px !important;
}

/* Filter Button */
.filter-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
}

/* Mode Selector Button */
.mode-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--border-orange);
    margin: 16px 0;
    gap: 2px;
}

.mode-btn {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--text-gray);
    border: none;
    background: rgba(20, 20, 20, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.mode-btn:hover {
    color: var(--text-light);
    background: rgba(255, 140, 0, 0.1);
}

.mode-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

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

.form-label {
    display: block;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 15px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

/* Error and Success Messages */
.error-message {
    color: var(--danger);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-input {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2) !important;
}

.success-message {
    color: var(--success);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.bedrock-info {
    display: none;
    margin-top: 8px;
    padding: 8px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--primary-orange);
}

/* Table */
.table-container {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-orange);
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.table th {
    background: linear-gradient(to right, 
        rgba(255, 140, 0, 0.2), 
        rgba(255, 140, 0, 0.1));
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border-orange);
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    color: var(--text-light);
    font-size: 14px;
    white-space: nowrap;
}

.table tr:hover {
    background: rgba(255, 140, 0, 0.05);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-pending {
    background: rgba(255, 170, 0, 0.2);
    color: var(--warning);
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.badge-paid {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge-cancelled {
    background: rgba(255, 68, 68, 0.2);
    color: var(--danger);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.badge-expired {
    background: rgba(102, 102, 102, 0.2);
    color: var(--text-dark);
    border: 1px solid rgba(102, 102, 102, 0.3);
}

/* Price */
.price-original {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 15px;
    opacity: 0.7;
}

.price-final {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 28px;
    margin: 8px 0;
    line-height: 1.2;
}

.discount-badge {
    background: linear-gradient(135deg, var(--success), #00cc6a);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.feature-item {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    content: '▶';
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 10px;
    flex-shrink: 0;
}

/* Server Header */
.server-header {
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.server-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        var(--primary-orange), 
        transparent);
}

.server-title {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(to right, 
        var(--primary-orange), 
        var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.server-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.4;
}

/* Mode Selector - MOBILE */
.mode-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--border-orange);
    margin: 16px 0;
    gap: 2px;
}

/* Warning Alert - MOBILE */
.warning-alert {
    background: rgba(255, 170, 0, 0.1);
    border-left: 4px solid var(--warning);
    padding: 16px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
}

.warning-alert .alert-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.warning-alert .alert-text {
    flex: 1;
    width: 100%;
    margin-bottom: 15px;
}

.warning-alert .alert-button {
    margin-left: 0;
    width: 100%;
}

.warning-alert .alert-button button {
    width: 100%;
}

/* Skin Image */
.skin-img {
    image-rendering: pixelated;
    border: 2px solid var(--border-orange);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Text Colors */
.text-white {
    color: var(--text-white) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-gray {
    color: var(--text-gray) !important;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.text-sm {
    font-size: 13px !important;
}

.text-lg {
    font-size: 16px !important;
}

.text-xl {
    font-size: 18px !important;
}

.text-2xl {
    font-size: 22px !important;
}

.text-3xl {
    font-size: 28px !important;
}

.text-4xl {
    font-size: 40px !important;
}

/* Spacing */
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mr-1 { margin-right: 4px; }
.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.ml-1 { margin-left: 4px; }
.ml-2 { margin-left: 8px; }
.ml-3 { margin-left: 12px; }
.ml-8 { margin-left: 32px; }

/* Grid */
.grid {
    display: grid;
    gap: 20px;
}

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

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards Grid */
.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Width */
.w-full {
    width: 100% !important;
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin: -5px;
}

/* Transactions Modal Styles */
.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transaction-card {
    padding: 16px;
}

.transaction-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.transaction-info {
    margin-bottom: 12px;
}

.transaction-price {
    text-align: right;
}

.transaction-code {
    display: inline-block;
    color: var(--text-light);
    background: var(--darker-bg);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-family: monospace;
}

.transaction-date {
    margin-top: 4px;
}

.transaction-actions {
    margin-top: 16px;
}

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

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

/* Responsive Styles */
@media (max-width: 767px) {
    .container {
        padding: 0 12px;
    }
    
    .server-title {
        font-size: 28px;
    }
    
    .server-subtitle {
        font-size: 14px;
    }
    
    .server-logo {
        height: 40px;
    }
    
    .user-nickname {
        max-width: 120px;
        font-size: 15px;
    }
    
    .user-account-type {
        font-size: 11px;
    }
    
    .skin-img {
        width: 35px;
        height: 35px;
    }
    
    .mobile-header-btn .btn-text {
        display: none;
    }
    
    .mobile-header-btn i {
        margin-right: 0;
        font-size: 14px;
    }
    
    .mode-btn {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 15px;
        max-height: 85vh;
    }
    
    .price-final {
        font-size: 24px;
    }
    
    .card {
        padding: 16px;
        margin-top: 15px;
    }
    
    .warning-alert {
        padding: 12px;
        margin: 12px 0;
    }
    
    .header-btn {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    .nav-link {
        padding: 5px 8px;
        font-size: 12px;
        margin: 0 1px;
    }
    
    .grid-cards {
        gap: 16px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .form-input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 13px;
        padding: 6px 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .user-nickname {
        max-width: 180px;
    }
    
    .mode-btn {
        min-width: 110px;
    }
}

@media (min-width: 1024px) {
    .grid-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .user-nickname {
        max-width: 200px;
    }
    
    .transaction-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .transaction-info {
        margin-bottom: 0;
        flex: 1;
    }
    
    .transaction-price {
        text-align: right;
        margin-left: 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .header-btn:hover,
    .mode-btn:hover,
    .nav-link:hover {
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    .btn:active,
    .header-btn:active,
    .mode-btn:active {
        transform: scale(0.98);
    }
}

/* Loading state */
.btn-loading {
    opacity: 0.7;
    cursor: wait;
}

/* Disabled state */
.btn:disabled,
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ===== CONFIMATION MODAL STYLES ===== */
.confirm-modal .modal-content {
    max-width: 450px;
}

.confirm-modal .modal-body {
    padding: 0;
    text-align: center;
}

.confirm-modal .modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.confirm-modal .modal-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.confirm-modal .modal-message {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.confirm-modal .modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.confirm-modal .modal-action-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Rajdhani', sans-serif;
}

.confirm-modal .modal-action-btn.confirm {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.confirm-modal .modal-action-btn.cancel {
    background: rgba(30, 30, 30, 0.8);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
}

.confirm-modal .modal-action-btn:hover {
    transform: translateY(-2px);
}

.confirm-modal .modal-action-btn.confirm:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.confirm-modal .modal-action-btn.cancel:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.05);
}

.confirm-modal .price-highlight {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 28px;
    margin: 15px 0;
}

.confirm-modal .upgrade-info {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    text-align: left;
}

.confirm-modal .upgrade-info-title {
    color: var(--success);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.confirm-modal .upgrade-info-detail {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}

.confirm-modal .item-details {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.confirm-modal .item-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.confirm-modal .item-detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.confirm-modal .item-detail-label {
    color: var(--text-gray);
    font-size: 14px;
}

.confirm-modal .item-detail-value {
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
}

/* Message Modal Styles */
.message-modal .modal-content {
    max-width: 400px;
}

.message-modal .modal-body {
    padding: 0;
    text-align: center;
}

.message-modal .modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.message-modal .modal-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.message-modal .modal-message {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 10px;
}

.message-modal .modal-actions {
    margin-top: 25px;
}

.message-modal .modal-action-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.message-modal .modal-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.message-modal .modal-icon.success {
    color: var(--success);
}

.message-modal .modal-icon.warning {
    color: var(--warning);
}

.message-modal .modal-icon.error {
    color: var(--danger);
}

.message-modal .modal-icon.info {
    color: var(--primary-orange);
}