/* LET Lotto Pro - Public Styles - Modern Golf Theme */

:root {
    --let-primary: #1a472a;
    --let-primary-dark: #0d2818;
    --let-primary-light: #2d6a4f;
    --let-accent: #c9a227;
    --let-accent-light: #daa520;
    --let-success: #059669;
    --let-warning: #f59e0b;
    --let-danger: #dc2626;
    --let-gray-50: #f9fafb;
    --let-gray-100: #f3f4f6;
    --let-gray-200: #e5e7eb;
    --let-gray-300: #d1d5db;
    --let-gray-400: #9ca3af;
    --let-gray-500: #6b7280;
    --let-gray-600: #4b5563;
    --let-gray-700: #374151;
    --let-gray-800: #1f2937;
    --let-gray-900: #111827;
    --let-font-display: 'Playfair Display', Georgia, serif;
    --let-font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --let-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --let-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --let-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --let-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.let-container { font-family: var(--let-font-body); line-height: 1.6; color: var(--let-gray-800); background: linear-gradient(180deg, #f5f5f0 0%, #e8e8e0 100%); min-height: 100vh; }
.let-container * { box-sizing: border-box; }

/* Header */
.let-header { position: relative; background: linear-gradient(135deg, var(--let-primary) 0%, var(--let-primary-dark) 100%); padding: 30px 0; overflow: hidden; }
.let-header-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 50%); }
.let-header-content { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.let-header-compact { padding: 15px 0; }
.let-logo { display: flex; align-items: center; gap: 15px; text-decoration: none; color: #fff; }
.let-logo-icon { font-size: 48px; filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3)); }
.let-logo-text h1 { font-family: var(--let-font-display); font-size: 28px; font-weight: 700; margin: 0; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); letter-spacing: 1px; }
.let-logo-text p { font-size: 14px; margin: 5px 0 0 0; color: rgba(255,255,255,0.8); }
.let-logo-small .let-logo-icon { font-size: 32px; }
.let-logo-small .let-logo-text { font-size: 18px; }

/* Navigation */
.let-nav { display: flex; align-items: center; gap: 10px; }
.let-nav-link { color: rgba(255,255,255,0.9); text-decoration: none; padding: 8px 16px; border-radius: 6px; font-weight: 500; transition: all 0.2s; background: none; border: none; cursor: pointer; font-size: 14px; }
.let-nav-link:hover { background: rgba(255,255,255,0.15); color: #fff; }
.let-user-greeting { color: var(--let-accent); font-weight: 600; margin-right: 10px; }
.let-cart-link { background: rgba(201,162,39,0.2); border: 1px solid var(--let-accent); }
.let-logout-btn { font-family: inherit; }

/* Buttons */
.let-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; font-family: var(--let-font-body); }
.let-btn-primary { background: linear-gradient(135deg, var(--let-primary) 0%, var(--let-primary-dark) 100%); color: #fff; box-shadow: var(--let-shadow); }
.let-btn-primary:hover { transform: translateY(-1px); box-shadow: var(--let-shadow-lg); }
.let-btn-accent { background: linear-gradient(135deg, var(--let-accent) 0%, var(--let-accent-light) 100%); color: var(--let-primary-dark); box-shadow: var(--let-shadow); }
.let-btn-outline { background: transparent; border: 2px solid var(--let-primary); color: var(--let-primary); }
.let-btn-outline:hover { background: var(--let-primary); color: #fff; }
.let-btn-ghost { background: transparent; color: var(--let-gray-600); }
.let-btn-ghost:hover { background: var(--let-gray-100); }
.let-btn-block { width: 100%; }
.let-btn-large { padding: 16px 32px; font-size: 17px; }
.let-btn-paypal { background: #0070ba; color: #fff; padding: 16px 32px; font-size: 18px; width: 100%; }
.let-btn-paypal:hover { background: #005ea6; }

/* Event Selector */
.let-event-selector { max-width: 1400px; margin: 0 auto; padding: 25px 20px; display: flex; align-items: center; gap: 15px; }
.let-label { font-weight: 600; color: var(--let-gray-700); }
.let-select { flex: 1; max-width: 500px; padding: 12px 16px; border: 2px solid var(--let-gray-200); border-radius: 8px; font-size: 15px; font-family: var(--let-font-body); background: #fff; cursor: pointer; }
.let-select:focus { outline: none; border-color: var(--let-primary); }

/* Tabs */
.let-tabs { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; gap: 5px; border-bottom: 2px solid var(--let-gray-200); }
.let-tab { display: flex; align-items: center; gap: 8px; padding: 15px 25px; background: none; border: none; cursor: pointer; font-family: var(--let-font-body); font-size: 15px; font-weight: 600; color: var(--let-gray-500); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.let-tab:hover { color: var(--let-primary); }
.let-tab.active { color: var(--let-primary); border-bottom-color: var(--let-primary); }
.let-tab-icon { font-size: 18px; }
.let-tab-content { display: none; max-width: 1400px; margin: 0 auto; padding: 30px 20px; }
.let-tab-content.active { display: block; }

/* Stats */
.let-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 25px; }
.let-stat { background: #fff; border-radius: 12px; padding: 20px; box-shadow: var(--let-shadow); border-left: 4px solid var(--let-primary); }
.let-stat-value { font-family: var(--let-font-display); font-size: 32px; font-weight: 700; color: var(--let-primary); line-height: 1.2; }
.let-stat-label { font-size: 13px; color: var(--let-gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 5px; }
.let-stat-bar { height: 6px; background: var(--let-gray-200); border-radius: 3px; margin-top: 12px; overflow: hidden; }
.let-stat-bar-fill { height: 100%; background: linear-gradient(90deg, var(--let-primary) 0%, var(--let-success) 100%); border-radius: 3px; transition: width 0.5s ease; }

/* Legend */
.let-legend { display: flex; gap: 25px; flex-wrap: wrap; padding: 15px 20px; background: #fff; border-radius: 10px; box-shadow: var(--let-shadow-sm); margin-bottom: 20px; }
.let-legend-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--let-gray-600); }
.let-legend-box { width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--let-gray-300); }
.let-legend-box.available { background: #fff; }
.let-legend-box.claimed { background: var(--let-success); border-color: var(--let-success); }
.let-legend-box.winner { background: var(--let-accent); border-color: var(--let-accent); }
.let-legend-box.wildcard { background: #fff; border-color: var(--let-danger); border-width: 3px; }
.let-legend-box.mine { background: #dbeafe; border-color: #3b82f6; }

/* Selection Bar */
.let-selection-bar { display: flex; align-items: center; gap: 20px; padding: 15px 20px; background: linear-gradient(135deg, var(--let-primary) 0%, var(--let-primary-dark) 100%); border-radius: 10px; margin-bottom: 20px; color: #fff; }
.let-selection-info { flex: 1; font-size: 15px; }
.let-selection-count { font-weight: 700; font-size: 20px; color: var(--let-accent); }
.let-selection-total { margin-left: 15px; font-weight: 700; }

/* Event Notice */
.let-event-notice { display: flex; align-items: center; gap: 12px; padding: 15px 20px; border-radius: 10px; margin-bottom: 20px; font-weight: 500; }
.let-event-notice.closed { background: #fef3c7; color: #92400e; }
.let-event-notice.completed { background: #dbeafe; color: #1e40af; }
.notice-icon { font-size: 24px; }

/* Board */
.let-board-container { background: #fff; border-radius: 12px; box-shadow: var(--let-shadow-lg); overflow: hidden; }
.let-board-scroll { overflow-x: auto; }
.let-board { border-collapse: collapse; width: 100%; min-width: 900px; }
.let-board th, .let-board td { border: 1px solid var(--let-gray-200); padding: 0; }
.let-corner-cell { background: var(--let-primary-dark); min-width: 140px; padding: 10px !important; }
.corner-labels { display: flex; flex-direction: column; color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; height: 60px; justify-content: space-between; }
.label-rows { align-self: flex-start; }
.label-cols { align-self: flex-end; }

/* Golfer Headers */
.let-golfer-header { padding: 8px 5px !important; text-align: center; min-width: 80px; }
.let-golfer-header .golfer-number { display: block; font-size: 11px; font-weight: 700; opacity: 0.7; }
.let-golfer-header .golfer-name { display: block; font-size: 11px; font-weight: 600; line-height: 1.2; max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
.let-col-header { background: var(--let-primary); color: #fff; }
.let-col-header .golfer-number { color: var(--let-accent); }
.let-row-header { background: linear-gradient(90deg, var(--let-gray-100) 0%, var(--let-gray-50) 100%); color: var(--let-gray-800); min-width: 140px; text-align: left; padding: 8px 10px !important; }
.let-row-header .golfer-number { display: inline-block; background: var(--let-primary); color: #fff; padding: 2px 6px; border-radius: 4px; margin-right: 5px; font-size: 10px; }
.let-row-header .golfer-name { display: inline; font-size: 12px; }

/* Squares */
.let-square { width: 100%; min-height: 60px; padding: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; border: none; cursor: default; position: relative; transition: all 0.2s; font-family: var(--let-font-body); }
.let-square.selectable { cursor: pointer; }
.let-square.selectable:hover { background: #ecfdf5; transform: scale(1.05); z-index: 1; box-shadow: var(--let-shadow); }
.let-square.selectable.selected { background: var(--let-primary); color: #fff; }
.let-square.selectable.selected .square-number { color: #fff; }
.let-square.claimed { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.let-square.winner { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.let-square.wildcard { box-shadow: inset 0 0 0 3px var(--let-danger); }
.let-square.mine { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.square-number { font-weight: 700; font-size: 16px; color: var(--let-gray-700); }
.square-owner { font-size: 11px; color: var(--let-gray-500); margin-top: 2px; }
.square-badge { position: absolute; top: 3px; right: 3px; font-size: 12px; }

/* Results */
.let-section-title { font-family: var(--let-font-display); font-size: 24px; color: var(--let-primary); margin-bottom: 25px; }
.let-winners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.let-winner-card { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 12px; padding: 25px; text-align: center; box-shadow: var(--let-shadow); border: 2px solid var(--let-accent); }
.winner-trophy { font-size: 48px; margin-bottom: 10px; }
.winner-square { font-family: var(--let-font-display); font-size: 36px; font-weight: 700; color: var(--let-primary); }
.winner-match { font-size: 14px; color: var(--let-gray-600); margin-top: 5px; }
.winner-name { font-weight: 700; font-size: 18px; color: var(--let-gray-800); margin-top: 15px; }
.winner-prize { font-size: 24px; font-weight: 700; color: var(--let-success); margin-top: 10px; }

/* Participants */
.let-participants-list { display: grid; gap: 12px; }
.let-participant-card { display: flex; align-items: center; gap: 15px; padding: 15px 20px; background: #fff; border-radius: 10px; box-shadow: var(--let-shadow-sm); }
.participant-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--let-primary) 0%, var(--let-primary-light) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.participant-info { flex: 1; }
.participant-name { font-weight: 600; color: var(--let-gray-800); }
.participant-squares { font-size: 13px; color: var(--let-gray-500); }
.participant-numbers { display: flex; flex-wrap: wrap; gap: 5px; }
.square-chip { padding: 4px 10px; background: var(--let-gray-100); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--let-gray-600); }
.square-chip.more { background: var(--let-primary); color: #fff; }

/* Empty States */
.let-empty-state { text-align: center; padding: 60px 20px; }
.let-empty-state .empty-icon { font-size: 64px; margin-bottom: 20px; }
.let-empty-state h2 { font-family: var(--let-font-display); font-size: 28px; color: var(--let-gray-800); margin-bottom: 10px; }
.let-empty-state p { color: var(--let-gray-500); margin-bottom: 5px; }
.let-empty-state .empty-sub { font-size: 14px; }

/* Footer */
.let-footer { max-width: 1400px; margin: 0 auto; padding: 30px 20px; text-align: center; color: var(--let-gray-500); font-size: 14px; border-top: 1px solid var(--let-gray-200); }

/* Modal */
.let-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.let-modal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); }
.let-modal-content { position: relative; background: #fff; border-radius: 16px; padding: 40px; max-width: 420px; width: 100%; text-align: center; box-shadow: var(--let-shadow-xl); }
.let-modal-close { position: absolute; top: 15px; right: 15px; width: 32px; height: 32px; border: none; background: var(--let-gray-100); border-radius: 50%; cursor: pointer; font-size: 20px; color: var(--let-gray-500); }
.let-modal-icon { font-size: 48px; margin-bottom: 15px; }
.let-modal-content h3 { font-family: var(--let-font-display); font-size: 24px; margin-bottom: 10px; }
.let-modal-actions { display: flex; gap: 10px; margin-top: 25px; }
.let-modal-actions .let-btn { flex: 1; }

/* Auth Pages */
.let-auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; position: relative; font-family: var(--let-font-body); }
.let-auth-bg { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, var(--let-primary) 0%, var(--let-primary-dark) 50%, #0a1f12 100%); z-index: -1; }
.let-auth-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 30%, rgba(201,162,39,0.15) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 40%); }
.let-auth-card { background: #fff; border-radius: 16px; padding: 40px; max-width: 440px; width: 100%; box-shadow: var(--let-shadow-xl); }
.let-auth-header { text-align: center; margin-bottom: 30px; }
.let-auth-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--let-primary); }
.let-auth-logo .logo-icon { font-size: 36px; }
.let-auth-logo .logo-text { font-family: var(--let-font-display); font-size: 18px; font-weight: 700; }
.let-auth-title { font-family: var(--let-font-display); font-size: 28px; color: var(--let-gray-800); margin-bottom: 8px; }
.let-auth-subtitle { color: var(--let-gray-500); margin-bottom: 25px; }

/* Forms */
.let-auth-form, .let-account-form { display: flex; flex-direction: column; gap: 20px; }
.let-form-group { display: flex; flex-direction: column; gap: 6px; }
.let-form-group label { font-weight: 600; font-size: 14px; color: var(--let-gray-700); }
.let-form-group input, .let-form-group select { padding: 12px 16px; border: 2px solid var(--let-gray-200); border-radius: 8px; font-size: 15px; font-family: var(--let-font-body); transition: border-color 0.2s; }
.let-form-group input:focus, .let-form-group select:focus { outline: none; border-color: var(--let-primary); }
.let-form-group input:disabled { background: var(--let-gray-100); color: var(--let-gray-500); }
.let-form-row { display: flex; justify-content: flex-end; }
.let-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.let-forgot-link { font-size: 14px; color: var(--let-primary); text-decoration: none; }
.let-form-hint { font-size: 13px; color: var(--let-gray-500); }
.let-form-divider { border: none; border-top: 1px solid var(--let-gray-200); margin: 10px 0; }
.let-form-section-title { font-size: 16px; font-weight: 600; margin: 0; }
.let-auth-divider { text-align: center; position: relative; margin: 25px 0; }
.let-auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--let-gray-200); }
.let-auth-divider span { position: relative; background: #fff; padding: 0 15px; color: var(--let-gray-500); font-size: 14px; }
.let-auth-footer { text-align: center; margin-top: 25px; }
.let-auth-footer a { color: var(--let-gray-500); text-decoration: none; font-size: 14px; }
.let-auth-footer a:hover { color: var(--let-primary); }

/* Alerts */
.let-alert { padding: 15px 20px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
.let-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.let-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* Account Page */
.let-account-container { max-width: 1200px; margin: 0 auto; padding: 30px 20px; }
.let-page-title { font-family: var(--let-font-display); font-size: 32px; color: var(--let-gray-800); margin-bottom: 30px; }
.let-account-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 25px; margin-bottom: 25px; }
.let-account-card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: var(--let-shadow); }
.let-account-full { grid-column: 1 / -1; }
.let-card-title { font-family: var(--let-font-display); font-size: 20px; color: var(--let-gray-800); margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--let-gray-200); }
.let-summary-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; }
.let-summary-stat { text-align: center; padding: 15px; background: var(--let-gray-50); border-radius: 8px; }
.let-summary-stat .stat-value { display: block; font-size: 28px; font-weight: 700; color: var(--let-primary); }
.let-summary-stat .stat-label { font-size: 12px; color: var(--let-gray-500); text-transform: uppercase; }
.let-member-since { text-align: center; font-size: 13px; color: var(--let-gray-500); }

/* Tables */
.let-squares-table-wrap, .let-transactions-table-wrap { overflow-x: auto; }
.let-squares-table, .let-transactions-table { width: 100%; border-collapse: collapse; }
.let-squares-table th, .let-squares-table td, .let-transactions-table th, .let-transactions-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--let-gray-200); }
.let-squares-table th, .let-transactions-table th { background: var(--let-gray-50); font-weight: 600; font-size: 13px; text-transform: uppercase; color: var(--let-gray-600); }
.let-squares-table a, .let-transactions-table a { color: var(--let-primary); text-decoration: none; }
.winner-row { background: #fefce8; }
.square-number-badge { display: inline-block; padding: 4px 10px; background: var(--let-gray-100); border-radius: 20px; font-weight: 600; }
.let-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.let-badge-winner { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); color: #92400e; }
.let-badge-open { background: #d1fae5; color: #065f46; }
.let-badge-closed { background: #fef3c7; color: #92400e; }
.let-badge-completed { background: #dbeafe; color: #1e40af; }
.let-badge-pending { background: #fef3c7; color: #92400e; }
.let-badge-failed { background: #fee2e2; color: #991b1b; }
.let-badge-refunded { background: #fce7f3; color: #9d174d; }
.let-empty-inline { padding: 40px 20px; text-align: center; color: var(--let-gray-500); }

/* Checkout */
.let-checkout-container { max-width: 1000px; margin: 0 auto; padding: 30px 20px; }
.let-checkout-grid { display: grid; grid-template-columns: 1fr 350px; gap: 25px; }
.let-checkout-card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: var(--let-shadow); }
.let-cart-event { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid var(--let-gray-200); }
.let-cart-event:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.let-cart-event-name { font-family: var(--let-font-display); font-size: 18px; margin-bottom: 15px; }
.let-cart-squares { display: flex; flex-direction: column; gap: 10px; }
.let-cart-square { display: flex; align-items: center; gap: 15px; padding: 12px 15px; background: var(--let-gray-50); border-radius: 8px; }
.cart-square-info { flex: 1; }
.cart-square-num { font-weight: 700; margin-right: 10px; }
.cart-square-match { font-size: 13px; color: var(--let-gray-500); }
.cart-square-price { font-weight: 600; }
.cart-square-remove { width: 28px; height: 28px; border: none; background: var(--let-gray-200); border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--let-gray-500); display: flex; align-items: center; justify-content: center; }
.cart-square-remove:hover { background: var(--let-danger); color: #fff; }
.let-cart-event-subtotal { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px dashed var(--let-gray-300); font-weight: 600; }
.let-order-summary { position: sticky; top: 20px; }
.let-summary-rows { margin-bottom: 25px; }
.let-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--let-gray-100); }
.let-summary-total { font-size: 20px; font-weight: 700; border-bottom: none; margin-top: 10px; padding-top: 15px; border-top: 2px solid var(--let-gray-200); }
.let-checkout-secure { text-align: center; font-size: 13px; color: var(--let-gray-500); margin-top: 15px; }
.let-continue-shopping { display: block; text-align: center; margin-top: 15px; color: var(--let-primary); text-decoration: none; font-size: 14px; }

/* Payment Result */
.let-payment-result { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.let-result-card { background: #fff; border-radius: 16px; padding: 50px 40px; max-width: 500px; width: 100%; text-align: center; box-shadow: var(--let-shadow-xl); }
.let-result-icon { font-size: 72px; margin-bottom: 20px; }
.let-result-card h1 { font-family: var(--let-font-display); font-size: 28px; margin-bottom: 15px; }
.let-result-success h1 { color: var(--let-success); }
.let-result-cancelled h1 { color: var(--let-danger); }
.let-result-details { background: var(--let-gray-50); border-radius: 8px; padding: 20px; margin: 25px 0; text-align: left; }
.let-result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--let-gray-200); }
.let-result-row:last-child { border-bottom: none; }
.let-result-note { font-size: 14px; color: var(--let-gray-500); margin-bottom: 25px; }
.let-result-actions { display: flex; gap: 15px; justify-content: center; }

/* Payment Card */
.let-checkout-payment { display: flex; justify-content: center; padding: 40px 0; }
.let-payment-card { background: #fff; border-radius: 16px; padding: 40px; max-width: 450px; width: 100%; text-align: center; box-shadow: var(--let-shadow-xl); }
.let-payment-icon { font-size: 48px; margin-bottom: 15px; }
.let-payment-card h2 { font-family: var(--let-font-display); margin-bottom: 10px; }
.let-payment-summary { background: var(--let-gray-50); border-radius: 8px; padding: 20px; margin: 25px 0; text-align: left; }
.let-payment-row { display: flex; justify-content: space-between; padding: 8px 0; }
.let-payment-total { font-size: 20px; font-weight: 700; border-top: 2px solid var(--let-gray-200); margin-top: 10px; padding-top: 15px; }
.let-payment-note { margin-top: 20px; color: var(--let-gray-500); }

/* Responsive */
@media (max-width: 900px) { .let-checkout-grid { grid-template-columns: 1fr; } .let-account-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .let-header-content { flex-direction: column; text-align: center; } .let-logo { flex-direction: column; } .let-logo-text h1 { font-size: 22px; } .let-nav { flex-wrap: wrap; justify-content: center; } .let-tabs { overflow-x: auto; } .let-tab { padding: 12px 15px; white-space: nowrap; } .let-tab-text { display: none; } .let-stats { grid-template-columns: repeat(2, 1fr); } .let-stat-value { font-size: 24px; } .let-form-row-2 { grid-template-columns: 1fr; } .let-result-actions { flex-direction: column; } .let-modal-actions { flex-direction: column; } }

/* =========================================================================
   CONTENT SHORTCODE STYLES
   ========================================================================= */

/* Featured Events Grid */
.let-featured-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.let-event-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--let-shadow);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.let-event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--let-shadow-lg);
}

.let-event-card.let-featured {
    border: 2px solid var(--let-accent);
}

.let-event-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--let-accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.let-event-card h3 {
    margin: 0 0 10px 0;
    font-family: var(--let-font-display);
    font-size: 22px;
    color: var(--let-primary);
}

.let-event-card .let-tournament {
    color: var(--let-gray-600);
    margin: 0 0 10px 0;
    font-style: italic;
}

.let-event-card .let-date {
    margin: 0 0 15px 0;
    color: var(--let-gray-700);
}

.let-event-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--let-gray-50);
    border-radius: 8px;
}

.let-event-stats .let-price {
    font-weight: 700;
    color: var(--let-primary);
    font-size: 18px;
}

.let-event-stats .let-availability {
    color: var(--let-gray-600);
}

/* Events List (row format) */
.let-events-list {
    margin: 20px 0;
}

.let-event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: var(--let-shadow-sm);
    flex-wrap: wrap;
    gap: 15px;
}

.let-event-row:hover {
    box-shadow: var(--let-shadow);
}

.let-event-info h4 {
    margin: 0 0 5px 0;
    color: var(--let-primary);
}

.let-event-info .let-charity-badge,
.let-event-info .let-date {
    font-size: 13px;
    color: var(--let-gray-500);
    margin-right: 15px;
}

.let-event-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.let-event-meta .let-squares {
    font-weight: 600;
}

.let-event-meta .let-price {
    font-weight: 700;
    color: var(--let-primary);
}

/* Past Events Table */
.let-events-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--let-shadow-sm);
}

.let-events-table th {
    background: var(--let-primary);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.let-events-table td {
    padding: 15px;
    border-bottom: 1px solid var(--let-gray-200);
}

.let-events-table tr:last-child td {
    border-bottom: none;
}

.let-events-table tr:hover td {
    background: var(--let-gray-50);
}

/* Results Display */
.let-results-display {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--let-shadow);
    margin: 20px 0;
}

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

.let-results-header h3 {
    margin: 0;
    font-family: var(--let-font-display);
    font-size: 28px;
    color: var(--let-primary);
}

.let-winners-podium {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.let-winner {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    min-width: 180px;
}

.let-winner.let-place-1 {
    background: linear-gradient(135deg, #fef3c7, #fcd34d);
    border: 2px solid #f59e0b;
    order: 0;
}

.let-winner.let-place-2 {
    background: linear-gradient(135deg, #f3f4f6, #d1d5db);
    border: 2px solid #9ca3af;
    order: -1;
}

.let-winner.let-place-3 {
    background: linear-gradient(135deg, #fef3e2, #fed7aa);
    border: 2px solid #f97316;
    order: 1;
}

.let-place-badge {
    font-size: 48px;
    margin-bottom: 10px;
}

.let-winner-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.let-winner-square {
    color: var(--let-gray-600);
    font-size: 14px;
}

.let-winner-score {
    margin-top: 10px;
    font-size: 16px;
}

.let-winner-prize {
    margin-top: 10px;
    font-weight: 700;
    color: var(--let-primary);
    font-size: 20px;
}

.let-view-board {
    text-align: center;
}

/* Buttons */
.let-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

.let-btn-primary {
    background: var(--let-primary);
    color: #fff;
}

.let-btn-primary:hover {
    background: var(--let-primary-dark);
}

.let-btn-secondary {
    background: var(--let-gray-200);
    color: var(--let-gray-700);
}

.let-btn-secondary:hover {
    background: var(--let-gray-300);
}

.let-btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.let-btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Call to Action */
.let-cta {
    text-align: center;
    margin: 30px 0;
}

/* Partner Form */
.let-partner-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--let-shadow);
    max-width: 700px;
    margin: 20px auto;
}

.let-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .let-form-row {
        grid-template-columns: 1fr;
    }
}

.let-form-group {
    margin-bottom: 20px;
}

.let-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--let-gray-700);
}

.let-form-group input,
.let-form-group select,
.let-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--let-gray-300);
    border-radius: 6px;
    font-size: 16px;
}

.let-form-group input:focus,
.let-form-group select:focus,
.let-form-group textarea:focus {
    outline: none;
    border-color: var(--let-primary);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.let-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
}

.let-form-message.let-success {
    background: #d1fae5;
    color: #065f46;
}

.let-form-message.let-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Charities Grid */
.let-charities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.let-charity-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--let-shadow-sm);
    transition: box-shadow 0.2s;
}

.let-charity-card:hover {
    box-shadow: var(--let-shadow);
}

.let-charity-card .let-charity-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.let-charity-card h4 {
    margin: 0 0 10px 0;
    color: var(--let-primary);
}

.let-charity-card .let-charity-stats {
    color: var(--let-gray-500);
    font-size: 13px;
    margin-bottom: 15px;
}

/* No Content Messages */
.let-no-events,
.let-no-results,
.let-no-charities {
    text-align: center;
    padding: 40px;
    background: var(--let-gray-50);
    border-radius: 12px;
    color: var(--let-gray-600);
}
