/*
 * Modern styles for Account Management pages
 * Matching the design of rankings, items, and monsters pages
 */

/* Hero wrapper for My Account page */
.gam-my-account-hero-wrapper {
    width: 100%;
    margin-bottom: 30px;
    box-sizing: border-box;
}

/* When logged out: constrain to match the login form width */
.gam-my-account-hero-wrapper.gam-hero-logged-out {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Compact hero — match rankings/vending 18px 24px padding */
.gam-my-account-hero-wrapper .gam-hero {
    padding: 18px 24px;
    margin-bottom: 24px;
}

.gam-my-account-hero-wrapper .gam-hero .gam-hero-title {
    font-size: 1.5rem;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 0 1px 6px rgba(15, 23, 42, 0.22);
}

.gam-my-account-hero-wrapper .gam-hero .gam-hero-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: none;
}

/* Common card wrapper for all account components */
.gam-account-card {
    background: var(--gam-surface, #ffffff);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gam-border, #e5e7eb);
}

.gam-account-card h2,
.gam-account-card h3 {
    color: var(--gam-text, #0f172a);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

/* Create Account Grid Layout */
.gam-create-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.gam-form-section {
    min-width: 0;
}

.gam-form-section input[type="text"],
.gam-form-section input[type="password"] {
    width: 100%;
    max-width: 100%;
}

.gam-info-section {
    background: var(--gam-accent-pale, #dbeafe);
    border: 1px solid color-mix(in srgb, var(--gam-accent) 30%, transparent);
    border-left: 4px solid var(--gam-accent);
    border-radius: 8px;
    padding: 20px;
}

.gam-info-section h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--gam-accent, #1e40af);
    font-weight: 700;
}

.gam-info-description {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.gam-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.gam-requirements-list li {
    padding: 6px 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.gam-requirements-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.gam-requirements-list li strong {
    color: #1e40af;
}

.gam-info-tip {
    background: #fff;
    border-left: 4px solid #3b82f6;
    padding: 12px;
    border-radius: 8px;
    color: #374151;
    font-size: 13px;
    line-height: 1.5;
}

.gam-info-tip strong {
    color: #1e40af;
    margin-right: 5px;
}

/* Form styling */
.gam-account-card form p {
    margin-bottom: 20px;
}

.gam-account-card form label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.gam-account-card form input[type="text"],
.gam-account-card form input[type="password"],
.gam-account-card form input[type="number"],
.gam-account-card form select {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fff;
    color: #1f2937 !important;
    line-height: normal;
    vertical-align: middle;
    height: auto;
}

.gam-account-card form select option {
    color: #1f2937;
    padding: 8px;
}

.gam-account-card form input:focus,
.gam-account-card form select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.gam-account-card form input[type="submit"],
.gam-account-card form button[type="submit"] {
    background: var(--gam-accent);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease;
}

.gam-account-card form input[type="submit"]:hover,
.gam-account-card form button[type="submit"]:hover {
    background: var(--gam-accent-hover);
}

/* Improved tabs navigation */
.gam-tabs-wrapper {
    border: none;
    border-radius: 16px;
    overflow: visible;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 0 30px 0;
    box-sizing: border-box;
}

.gam-tabs-wrapper h2 {
    background: var(--gam-accent);
    color: #fff;
    padding: 16px 24px;
    margin: 0;
    border-radius: 8px 8px 0 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.gam-tabs-nav-container {
    position: relative;
    background: var(--gam-accent);
    overflow: hidden;
}

.gam-tabs-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 64, 175, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gam-tabs-scroll-btn:hover {
    background: rgba(59, 130, 246, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.gam-tabs-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gam-tabs-scroll-btn.left {
    left: 5px;
}

.gam-tabs-scroll-btn.right {
    right: 5px;
}

.gam-tabs-scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(30, 64, 175, 0.5);
}

.gam-tabs-nav {
    display: flex;
    margin: 0; padding: 0;
    list-style: none;
    background: var(--gam-accent);
    border-bottom: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
    scroll-behavior: smooth;
    padding: 0 50px;
}

.gam-tabs-nav::-webkit-scrollbar {
    height: 6px;
}

.gam-tabs-nav::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.gam-tabs-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 3px;
}

.gam-tabs-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.6);
}

.gam-tabs-nav li {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    min-width: 120px;
}

.gam-tabs-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    border-right: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
    min-width: 120px;
}

.gam-tabs-nav li:last-child a {
    border-right: none;
}

.gam-tabs-nav li a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.gam-tabs-nav li.active a {
    background-color: #fff;
    color: #3b82f6;
    border-bottom: none;
    position: relative;
}

.gam-tab-content-wrapper {
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    border-top: none;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}

/* Account info grid */
.gam-account-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.gam-info-item {
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.gam-info-item strong {
    color: #3b82f6;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

/* Action box styling */
.gam-action-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.gam-action-box h4 {
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Character table styling */
.gam-char-table {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    table-layout: auto;
}

.gam-char-table thead {
    background: var(--gam-accent);
}

.gam-char-table th {
    padding: 15px 18px;
    color: #fff;
    font-weight: 700;
    text-align: left;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gam-char-table tbody tr {
    background-color: #fff;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.gam-char-table tbody tr:nth-of-type(even) {
    background-color: #f9fafb;
}

.gam-char-table tbody tr:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.gam-char-table td {
    padding: 12px 18px;
    color: #1f2937 !important;
    border: none;
    font-size: 14px;
    font-weight: 600;
}

.gam-char-table .char-actions form {
    margin: 0;
}

.gam-char-table .button-small {
    background: var(--gam-accent);
    color: #fff;
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease;
}

.gam-char-table .button-small:hover {
    background: var(--gam-accent-hover);
}

/* Voting table styling */
.gam-vote-sites-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.gam-vote-sites-table thead {
    background: var(--gam-accent);
}

.gam-vote-sites-table th {
    padding: 15px 18px;
    color: #fff;
    font-weight: 700;
    text-align: left;
    border: none;
    font-size: 14px;
}

.gam-vote-sites-table tbody tr {
    background-color: #fff;
    transition: all 0.2s ease;
}

.gam-vote-sites-table tbody tr:nth-of-type(even) {
    background-color: #f9fafb;
}

.gam-vote-sites-table tbody tr:hover {
    background-color: #f3f4f6;
}

.gam-vote-sites-table td {
    padding: 12px 18px;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.gam-vote-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.gam-vote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    color: #fff;
}

/* Status badges */
.status-active,
.status-vip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.status-active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
}

.status-vip {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff !important;
}

.status-banned {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .gam-adaptive-theme .gam-account-card {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: rgba(255,255,255,0.1);
    }

    .gam-adaptive-theme .gam-account-card h2,
    .gam-adaptive-theme .gam-account-card h3 {
        color: #e2e8f0;
        -webkit-text-fill-color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-info-section {
        background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
        border-color: #3b82f6;
    }

    .gam-adaptive-theme .gam-info-section h3 {
        color: #bfdbfe;
        -webkit-text-fill-color: #bfdbfe;
    }

    .gam-adaptive-theme .gam-info-description {
        color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-requirements-list li {
        color: #e2e8f0;
        border-bottom-color: rgba(191, 219, 254, 0.2);
    }

    .gam-adaptive-theme .gam-requirements-list li strong {
        color: #bfdbfe;
    }

    .gam-adaptive-theme .gam-info-tip {
        background: rgba(255, 255, 255, 0.1);
        border-color: #60a5fa;
        color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-info-tip strong {
        color: #bfdbfe;
    }

    .gam-adaptive-theme .gam-account-card form label {
        color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-account-card form input,
    .gam-adaptive-theme .gam-account-card form select {
        background: #0f172a;
        border-color: rgba(255,255,255,0.1);
        color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-tab-content-wrapper {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: rgba(255,255,255,0.1);
    }

    .gam-adaptive-theme .gam-account-info-grid {
        background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
        border-color: rgba(255,255,255,0.1);
    }

    .gam-adaptive-theme .gam-info-item {
        background: #0f172a;
        border-color: rgba(255,255,255,0.1);
        color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-action-box {
        background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
        border-color: rgba(255,255,255,0.1);
    }

    .gam-adaptive-theme .gam-action-box h4 {
        color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-char-table tbody tr {
        background-color: rgba(255,255,255,0.03);
        border-bottom-color: rgba(255,255,255,0.05);
    }

    .gam-adaptive-theme .gam-char-table tbody tr:nth-of-type(even) {
        background-color: rgba(255,255,255,0.05);
    }

    .gam-adaptive-theme .gam-char-table tbody tr:hover {
        background-color: rgba(255,255,255,0.08);
    }

    .gam-adaptive-theme .gam-char-table td {
        color: #e2e8f0;
    }

    .gam-adaptive-theme .gam-vote-sites-table tbody tr {
        background-color: rgba(255,255,255,0.03);
    }

    .gam-adaptive-theme .gam-vote-sites-table tbody tr:nth-of-type(even) {
        background-color: rgba(255,255,255,0.05);
    }

    .gam-adaptive-theme .gam-vote-sites-table td {
        color: #e2e8f0;
        border-bottom-color: rgba(255,255,255,0.05);
    }

    /* Tabs wrapper styles */
    .gam-adaptive-theme .gam-tabs-wrapper {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }

    .gam-adaptive-theme .gam-tabs-wrapper h2 {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    }

    .gam-adaptive-theme .gam-tabs-nav-container {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    }

    .gam-adaptive-theme .gam-tabs-scroll-btn {
        background: rgba(30, 64, 175, 0.95);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .gam-adaptive-theme .gam-tabs-scroll-btn:hover {
        background: rgba(59, 130, 246, 1);
    }

    .gam-adaptive-theme .gam-tabs-nav {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        scrollbar-color: rgba(255,255,255,0.4) transparent;
    }

    .gam-adaptive-theme .gam-tabs-nav::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.5);
    }

    .gam-adaptive-theme .gam-tabs-nav li a {
        color: rgba(255,255,255,0.8);
        border-right-color: rgba(255,255,255,0.1);
    }

    .gam-adaptive-theme .gam-tabs-nav li a:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .gam-adaptive-theme .gam-tabs-nav li.active a {
        background-color: #1e293b;
        color: #60a5fa;
    }

    .gam-adaptive-theme .gam-tab-content-wrapper {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: rgba(255,255,255,0.1);
    }
}

/* Forced dark theme */
.gam-force-dark .gam-account-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: rgba(255,255,255,0.1);
}

.gam-force-dark .gam-account-card h2,
.gam-force-dark .gam-account-card h3 {
    color: #e2e8f0;
    -webkit-text-fill-color: #e2e8f0;
}

.gam-force-dark .gam-info-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
    border-color: #3b82f6;
}

.gam-force-dark .gam-info-section h3 {
    color: #bfdbfe;
    -webkit-text-fill-color: #bfdbfe;
}

.gam-force-dark .gam-info-description {
    color: #e2e8f0;
}

.gam-force-dark .gam-requirements-list li {
    color: #e2e8f0;
    border-bottom-color: rgba(191, 219, 254, 0.2);
}

.gam-force-dark .gam-requirements-list li strong {
    color: #bfdbfe;
}

.gam-force-dark .gam-info-tip {
    background: rgba(255, 255, 255, 0.1);
    border-color: #60a5fa;
    color: #e2e8f0;
}

.gam-force-dark .gam-info-tip strong {
    color: #bfdbfe;
}

.gam-force-dark .gam-account-card form label {
    color: #e2e8f0;
}

.gam-force-dark .gam-account-card form input,
.gam-force-dark .gam-account-card form select {
    background: #0f172a;
    border-color: rgba(255,255,255,0.1);
    color: #e2e8f0;
}

.gam-force-dark .gam-tab-content-wrapper {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: rgba(255,255,255,0.1);
}

.gam-force-dark .gam-account-info-grid {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-color: rgba(255,255,255,0.1);
}

.gam-force-dark .gam-info-item {
    background: #0f172a;
    border-color: rgba(255,255,255,0.1);
    color: #e2e8f0;
}

.gam-force-dark .gam-action-box {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-color: rgba(255,255,255,0.1);
}

.gam-force-dark .gam-action-box h4 {
    color: #e2e8f0;
}

.gam-force-dark .gam-char-table tbody tr {
    background-color: rgba(255,255,255,0.03);
    border-bottom-color: rgba(255,255,255,0.05);
}

.gam-force-dark .gam-char-table tbody tr:nth-of-type(even) {
    background-color: rgba(255,255,255,0.05);
}

.gam-force-dark .gam-char-table tbody tr:hover {
    background-color: rgba(255,255,255,0.08);
}

.gam-force-dark .gam-char-table td {
    color: #e2e8f0;
}

.gam-force-dark .gam-vote-sites-table tbody tr {
    background-color: rgba(255,255,255,0.03);
}

.gam-force-dark .gam-vote-sites-table tbody tr:nth-of-type(even) {
    background-color: rgba(255,255,255,0.05);
}

.gam-force-dark .gam-vote-sites-table td {
    color: #e2e8f0;
    border-bottom-color: rgba(255,255,255,0.05);
}

/* Tabs wrapper styles */
.gam-force-dark .gam-tabs-wrapper {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.gam-force-dark .gam-tabs-wrapper h2 {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.gam-force-dark .gam-tabs-nav-container {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.gam-force-dark .gam-tabs-scroll-btn {
    background: rgba(30, 64, 175, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}

.gam-force-dark .gam-tabs-scroll-btn:hover {
    background: rgba(59, 130, 246, 1);
}

.gam-force-dark .gam-tabs-nav {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    scrollbar-color: rgba(255,255,255,0.4) transparent;
}

.gam-force-dark .gam-tabs-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
}

.gam-force-dark .gam-tabs-nav li a {
    color: rgba(255,255,255,0.8);
    border-right-color: rgba(255,255,255,0.1);
}

.gam-force-dark .gam-tabs-nav li a:hover {
    background-color: rgba(255,255,255,0.1);
}

.gam-force-dark .gam-tabs-nav li.active a {
    background-color: #1e293b;
    color: #60a5fa;
}

.gam-force-dark .gam-tab-content-wrapper {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: rgba(255,255,255,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .gam-my-account-hero-wrapper {
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .gam-account-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .gam-create-account-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gam-tabs-nav li a {
        padding: 12px 16px;
        font-size: 13px;
    }

    .gam-tab-content-wrapper {
        padding: 20px 15px;
    }

    .gam-account-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ============================================================
   VOTING PAGE — VP badge hero icon (replaces WP emoji)
   ============================================================ */
.gam-vote-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.5);
    font-size: 1.3rem !important;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    line-height: 1 !important;
}

/* Voting Coming Soon card */
.gam-vote-coming-soon-card {
    overflow: hidden;
}

.gam-vote-soon-body {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 24px !important;
}

.gam-vote-soon-icon {
    flex-shrink: 0;
}

.gam-vp-badge-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: 0 8px 24px rgba(139,92,246,0.35);
    border: 3px solid rgba(139,92,246,0.3);
}

.gam-vote-soon-title {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gam-text, #1e293b);
}

.gam-vote-soon-desc {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: var(--gam-text-3, #64748b);
    line-height: 1.55;
}

.gam-vote-perks-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gam-vote-perk-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gam-text-2, #374151);
    background: var(--gam-surface-2, #f1f5f9);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--gam-border, #e5e7eb);
}

.gam-vote-perk-icon {
    color: #8b5cf6;
    font-weight: 700;
}

@media (max-width: 600px) {
    .gam-vote-soon-body {
        flex-direction: column;
        text-align: center;
    }
    .gam-vote-perks-row {
        justify-content: center;
    }
}

/* Dark theme — voting */
@media (prefers-color-scheme: dark) {
    .gam-adaptive-theme .gam-vote-soon-title {
        color: #e2e8f0;
    }
    .gam-adaptive-theme .gam-vote-perk-item {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.12);
        color: #cbd5e1;
    }
}

.gam-force-dark .gam-vote-soon-title {
    color: #e2e8f0;
}
.gam-force-dark .gam-vote-perk-item {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: #cbd5e1;
}
