/**
 * GB Booking System - Public CSS
 */

:root {
    --gb-primary: #4a90a4;
    --gb-primary-dark: #3a7a8e;
    --gb-success: #28a745;
    --gb-danger: #dc3545;
    --gb-warning: #ffc107;
    --gb-gray: #6c757d;
    --gb-light: #f8f9fa;
    --gb-border: #dee2e6;
}

/* General */
.gb-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gb-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gb-btn:hover {
    background: var(--gb-primary-dark);
    color: #fff;
    text-decoration: none;
}

.gb-btn-secondary {
    background: var(--gb-gray);
}

.gb-btn-danger {
    background: var(--gb-danger);
}

.gb-btn-danger:hover {
    background: #c82333;
}

.required {
    color: var(--gb-danger);
}

/* Login Required */
.gb-login-required {
    text-align: center;
    padding: 40px;
    background: var(--gb-light);
    border-radius: 8px;
}

.gb-login-required .gb-btn {
    margin: 5px;
}

/* Session Calendar */
.gb-session-calendar-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.gb-session-info {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gb-light);
    border-radius: 8px;
}

.gb-session-info h3 {
    margin-top: 0;
}

.gb-session-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--gb-primary);
}

.gb-session-notes {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid var(--gb-warning);
}

.gb-session-notes h4 {
    margin-top: 0;
}

.gb-session-calendar {
    margin-bottom: 20px;
}

.gb-calendar-month {
    margin-bottom: 30px;
}

.gb-calendar-month h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gb-primary);
}

.gb-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.gb-calendar-slot {
    padding: 12px;
    background: #fff;
    border: 1px solid var(--gb-border);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gb-calendar-slot:hover {
    border-color: var(--gb-primary);
}

.gb-calendar-slot.available {
    background: #d4edda;
    border-color: var(--gb-success);
}

.gb-calendar-slot.booked {
    background: #f8d7da;
    border-color: var(--gb-danger);
    cursor: not-allowed;
}

.gb-calendar-slot.selected {
    background: var(--gb-primary);
    color: #fff;
    border-color: var(--gb-primary-dark);
}

.gb-slot-date {
    font-weight: bold;
    margin-bottom: 5px;
}

.gb-slot-time {
    font-size: 14px;
}

.gb-status-available {
    color: var(--gb-success);
    font-weight: bold;
}

.gb-status-booked {
    color: var(--gb-danger);
    font-weight: bold;
}

.gb-calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.gb-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gb-calendar-loading {
    text-align: center;
    padding: 40px;
    color: var(--gb-gray);
}

/* Booking Form */
.gb-booking-form {
    max-width: 500px;
}

.gb-form-group {
    margin-bottom: 20px;
}

.gb-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.gb-form-group input[type="text"],
.gb-form-group input[type="date"],
.gb-form-group input[type="email"],
.gb-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gb-border);
    border-radius: 6px;
    font-size: 14px;
}

.gb-form-group input:focus,
.gb-form-group textarea:focus {
    outline: none;
    border-color: var(--gb-primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.gb-form-group small {
    display: block;
    margin-top: 5px;
    color: var(--gb-gray);
    font-size: 12px;
}

.gb-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gb-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gb-light);
    border-radius: 6px;
    cursor: pointer;
}

.gb-radio-label:hover {
    background: #e9ecef;
}

.gb-radio-label.gb-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gb-price-display {
    padding: 15px;
    background: var(--gb-light);
    border-radius: 6px;
    margin-bottom: 20px;
}

.gb-price-display strong {
    font-size: 20px;
    color: var(--gb-primary);
}

#gb-paypal-button-container {
    min-height: 50px;
}

.gb-payment-unavailable {
    padding: 20px;
    background: #f8d7da;
    border-radius: 6px;
    text-align: center;
}

.gb-form-messages {
    margin-top: 15px;
}

.gb-form-messages .error {
    padding: 15px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 6px;
}

.gb-form-messages .success {
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
}

.gb-selected-slot {
    padding: 15px;
    background: var(--gb-light);
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gb-primary);
}

/* Workshop List */
.gb-workshop-list {
    display: grid;
    gap: 20px;
}

.gb-workshop-card {
    background: #fff;
    border: 1px solid var(--gb-border);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.gb-workshop-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gb-workshop-card.gb-past {
    opacity: 0.7;
}

.gb-workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.gb-workshop-title {
    margin: 0;
    font-size: 18px;
}

.gb-workshop-type {
    padding: 4px 10px;
    background: var(--gb-primary);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

.gb-workshop-meta {
    margin-bottom: 15px;
}

.gb-workshop-meta p {
    margin: 5px 0;
}

.gb-workshop-date {
    font-size: 16px;
}

.gb-workshop-price {
    font-weight: bold;
    color: var(--gb-primary);
}

.gb-workshop-description {
    margin-bottom: 15px;
    color: var(--gb-gray);
    line-height: 1.6;
}

.gb-workshop-availability {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.gb-availability-item {
    font-size: 14px;
}

.gb-full {
    color: var(--gb-danger);
    font-weight: bold;
}

.gb-workshop-actions {
    text-align: right;
}

/* Workshop Banner */
.gb-workshop-banner {
    margin: -20px -20px 15px -20px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.gb-workshop-banner img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gb-workshop-card:hover .gb-workshop-banner img {
    transform: scale(1.02);
}

/* Workshop Detail Banner (Booking Page) */
.gb-workshop-detail-banner {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.gb-workshop-detail-banner img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    display: block;
}

/* Cancellation Policy */
.gb-cancellation-policy {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.gb-cancellation-policy h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gb-dark);
}

.gb-cancellation-policy ul {
    margin: 0;
    padding-left: 1.5em;
}

.gb-cancellation-policy li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.gb-policy-section {
    margin-bottom: 20px;
}

.gb-policy-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--gb-dark);
}

/* Workshop Booking */
.gb-workshop-booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .gb-workshop-booking {
        grid-template-columns: 1fr;
    }
}

.gb-workshop-detail h2 {
    margin-top: 0;
}

.gb-workshop-info {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--gb-light);
    border-radius: 6px;
}

.gb-workshop-full-description {
    line-height: 1.8;
}

/* Workshop Booking - Logged In Premium Styling */
.gb-workshop-booking .gb-workshop-detail {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 0;
}

.gb-workshop-booking .gb-workshop-detail h2 {
    color: transparent;
    background: linear-gradient(135deg, #f5d742 0%, #d4af37 50%, #baa20d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
    line-height: 1.3;
}

.gb-workshop-booking .gb-workshop-info {
    background: rgba(186, 162, 13, 0.15);
    border: 1px solid rgba(186, 162, 13, 0.4);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 0;
}

.gb-workshop-booking .gb-workshop-info p {
    color: #e0e0e0;
    margin: 10px 0;
    font-size: 15px;
}

.gb-workshop-booking .gb-workshop-info strong {
    color: var(--gb-gold);
}

.gb-workshop-booking-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.gb-workshop-booking-form h3 {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gb-gold);
    display: inline-block;
}

.gb-venue-info {
    margin-top: 20px;
    padding: 15px;
    background: #e8f4f8;
    border-radius: 6px;
}

.gb-venue-info h4 {
    margin-top: 0;
}

.gb-remaining-seats {
    font-size: 16px;
    color: var(--gb-success);
    font-weight: bold;
    margin-bottom: 20px;
}

.gb-full-notice {
    padding: 20px;
    background: #f8d7da;
    border-radius: 6px;
    text-align: center;
}

/* My Page */
.gb-mypage h2 {
    margin-bottom: 20px;
}

.gb-no-bookings {
    padding: 40px;
    text-align: center;
    background: var(--gb-light);
    border-radius: 8px;
}

.gb-bookings-list {
    display: grid;
    gap: 15px;
}

.gb-booking-card {
    background: #fff;
    border: 1px solid var(--gb-border);
    border-radius: 8px;
    padding: 20px;
}

.gb-booking-card.gb-past {
    opacity: 0.7;
}

.gb-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.gb-booking-type {
    font-size: 12px;
    padding: 4px 10px;
    background: var(--gb-light);
    border-radius: 4px;
}

.gb-booking-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

.gb-booking-status.gb-status-pending {
    background: #fff3cd;
    color: #856404;
}

.gb-booking-status.gb-status-paid,
.gb-booking-status.gb-status-confirmed {
    background: #d4edda;
    color: #155724;
}

.gb-booking-status.gb-status-cancelled {
    background: #e2e3e5;
    color: #383d41;
}

.gb-booking-title {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.gb-booking-details {
    margin-bottom: 15px;
}

.gb-booking-details p {
    margin: 5px 0;
}

.gb-booking-actions {
    text-align: right;
}

.gb-cancel-disabled {
    color: var(--gb-gray);
    font-size: 12px;
}

.gb-past-bookings h3 {
    margin-top: 40px;
}

/* No Workshops */
.gb-no-workshops {
    padding: 40px;
    text-align: center;
    background: var(--gb-light);
    border-radius: 8px;
}

/* Session Booking Form */
.gb-session-booking-form h3 {
    margin-top: 0;
}

.gb-workshop-booking-form h3 {
    margin-top: 0;
}

/* Sales Not Started */
.gb-sales-not-started {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
}

.gb-sales-not-started p {
    margin: 10px 0;
    font-size: 16px;
}


/* Coupon Input */
.gb-coupon-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.gb-coupon-input-group input {
    flex: 1;
}

#gb-coupon-message {
    font-size: 13px;
    margin-top: 5px;
}

#gb-coupon-message .success {
    color: var(--gb-success);
}

#gb-coupon-message .error {
    color: var(--gb-danger);
}

/* Discounted Price Display */
.gb-price-display.gb-has-discount {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 1px solid var(--gb-success);
}

.gb-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-weight: normal;
}

.gb-arrow {
    color: var(--gb-success);
    font-weight: bold;
    margin: 0 5px;
}

.gb-discounted-price {
    color: var(--gb-success);
    font-size: 24px;
    font-weight: 700;
}

/* =========================================
   Workshop Booking - Gold Premium Theme
   ========================================= */

:root {
    --gb-gold: #baa20d;
    --gb-gold-dark: #9a850a;
    --gb-gold-light: #f5f0d8;
    --gb-gold-gradient: linear-gradient(135deg, #d4c02e 0%, #baa20d 50%, #9a850a 100%);
}

/* Login Required Container */
.gb-login-required {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    text-align: left;
}

/* Workshop Detail Header */
.gb-login-required .gb-workshop-detail {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    margin-bottom: 0;
}

.gb-login-required .gb-workshop-detail h2 {
    color: var(--gb-gold);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.gb-login-required .gb-workshop-info {
    background: rgba(186, 162, 13, 0.1);
    border: 1px solid rgba(186, 162, 13, 0.3);
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
}

.gb-login-required .gb-workshop-info p {
    color: #e0e0e0;
    margin: 8px 0;
    font-size: 15px;
}

.gb-login-required .gb-workshop-info strong {
    color: var(--gb-gold);
}

/* Login Section */
.gb-login-section {
    background: #fff;
    padding: 40px;
    border-radius: 0 0 16px 16px;
    border: 1px solid #e0e0e0;
    border-top: 4px solid var(--gb-gold);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gb-login-section h3 {
    margin: 0 0 10px 0;
    color: #1a1a2e;
    font-size: 22px;
    font-weight: 600;
}

.gb-login-section>p {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Login Form Wrapper - Side by Side */
.gb-login-form-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 30px;
    align-items: stretch;
}

/* Inline Login Form */
.gb-inline-login-form {
    text-align: left;
    padding: 20px 40px 20px 20px;
    border-right: none;
}

.gb-inline-login-form .gb-form-group {
    margin-bottom: 20px;
}

.gb-inline-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gb-inline-login-form input[type="text"],
.gb-inline-login-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.gb-inline-login-form input[type="text"]:focus,
.gb-inline-login-form input[type="password"]:focus {
    border-color: var(--gb-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(186, 162, 13, 0.1);
}

/* Login Actions */
.gb-login-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-top: 25px;
}

.gb-login-actions .gb-btn {
    background: var(--gb-gold-gradient);
    color: #fff;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gb-login-actions .gb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 162, 13, 0.3);
}

.gb-link {
    color: var(--gb-gold-dark);
    font-size: 13px;
    text-align: center;
}

.gb-link:hover {
    color: var(--gb-gold);
    text-decoration: underline;
}

/* Divider */
.gb-login-form-wrapper::before {
    content: "";
    display: block;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

/* Register Section */
.gb-register-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px 20px 40px;
}

.gb-register-section p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.gb-register-section .gb-btn-secondary {
    background: transparent;
    color: var(--gb-gold);
    border: 2px solid var(--gb-gold);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gb-register-section .gb-btn-secondary:hover {
    background: var(--gb-gold);
    color: #fff;
}

/* Error Message */
.gb-error-message {
    color: var(--gb-danger);
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

/* User Profile Section */
.gb-user-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    color: #fff;
}

.gb-user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gb-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gb-user-avatar img {
    border-radius: 50%;
    border: 3px solid var(--gb-gold);
}

.gb-user-details h2 {
    margin: 0;
    font-size: 1.4em;
    color: #fff;
    border: none;
    padding: 0;
}

.gb-user-email {
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.gb-user-actions {
    display: flex;
    gap: 10px;
}

.gb-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.gb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Profile Edit Form */
.gb-profile-form {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gb-profile-form h3 {
    margin: 0 0 20px 0;
    color: var(--gb-gold);
    font-size: 1.1em;
}

.gb-profile-form .gb-form-group {
    margin-bottom: 15px;
}

.gb-profile-form label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    display: block;
}

.gb-profile-form label small {
    color: rgba(255, 255, 255, 0.5);
}

.gb-profile-form input[type="text"],
.gb-profile-form input[type="email"],
.gb-profile-form input[type="password"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

.gb-profile-form input:focus {
    outline: none;
    border-color: var(--gb-gold);
    background: rgba(255, 255, 255, 0.15);
}

.gb-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

#gb-profile-message .success {
    background: rgba(40, 167, 69, 0.2);
    color: #90EE90;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
}

#gb-profile-message .error {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
}

@media (max-width: 600px) {
    .gb-user-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gb-user-actions {
        width: 100%;
    }

    .gb-user-actions .gb-btn {
        flex: 1;
        text-align: center;
    }
}

/* User Info Box - Gold Theme */
.gb-user-info-box {
    background: linear-gradient(135deg, var(--gb-gold-light) 0%, #fffef5 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(186, 162, 13, 0.3);
    border-left: 5px solid var(--gb-gold);
}

.gb-user-info-box h4 {
    margin: 0 0 15px 0;
    color: var(--gb-gold-dark);
    font-size: 16px;
    font-weight: 600;
}

.gb-user-info-box p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

.gb-user-info-box strong {
    color: #1a1a2e;
}

.gb-user-note {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(186, 162, 13, 0.3);
}

.gb-user-note a {
    color: var(--gb-gold-dark);
    font-weight: 500;
}

/* Field Notes */
.gb-field-note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .gb-login-required .gb-workshop-detail {
        padding: 30px 20px;
        border-radius: 12px 12px 0 0;
    }

    .gb-login-required .gb-workshop-detail h2 {
        font-size: 22px;
    }

    .gb-login-section {
        padding: 30px 20px;
    }

    .gb-login-form-wrapper {
        grid-template-columns: 1fr;
    }

    .gb-login-form-wrapper::before {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, #e0e0e0, transparent);
        margin: 20px 0;
    }

    .gb-inline-login-form {
        padding: 0 0 20px 0;
    }

    .gb-register-section {
        padding: 20px 0 0 0;
    }
}

/* Booking Complete Success Message */
.gb-booking-complete {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    color: #fff;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gb-complete-icon {
    font-size: 72px;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.gb-complete-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    display: block !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.gb-complete-message {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.gb-complete-note {
    background: rgba(186, 162, 13, 0.15);
    border: 1px solid rgba(186, 162, 13, 0.3);
    border-radius: 10px;
    padding: 15px 25px;
    display: inline-block;
}

.gb-complete-note p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}