/* Access Token Page Styles - Premium Redesign */
:root {
    --primary: #0284c7;
    --primary-dark: #0c4a6e;
    --primary-light: #38bdf8;
    --accent: #f43f5e;
    --dark: #0f172a;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
}

/* Main page layout */
.access-token-page {
    min-height: 100vh;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Premium background elements */
.premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.premium-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
}

.premium-glow.top-left {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out alternate;
}

.premium-glow.bottom-right {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
    100% { transform: translate(0, 0); }
}

/* Main container */
.access-token-container {
    width: 100%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Subtle gradient border at the top */
.access-token-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
}

/* Header styles */
.access-token-header {
    text-align: center;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 1rem;
}

.header-logo {
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.access-token-header h2 {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.access-token-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto;
    font-weight: 400;
}

.access-token-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    border-radius: 3px;
    opacity: 0.7;
}

/* Exit link */
.exit-link {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.exit-link:hover {
    color: var(--primary);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Progress indicator */
.access-process {
    margin-bottom: 1.5rem;
}

.progress-container {
    margin-bottom: 1.75rem;
    padding: 0 1rem;
}

.progress-bar {
    height: 4px;
    background-color: var(--gray-200);
    border-radius: 2px;
    position: relative;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.progress-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%; /* Start at step 1 */
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.3);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-step span {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
    transform: scale(1.05);
}

.progress-step.active span {
    color: var(--primary);
    font-weight: 600;
}

.progress-step.completed .step-circle {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.progress-step.completed span {
    color: var(--success);
}

/* Step panels */
.step-panels {
    position: relative;
    min-height: 400px;
}

.step-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.step-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease forwards;
}

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

.panel-content {
    padding: 1rem;
}

.panel-content h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.panel-description {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Step actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

/* Start Assessment Button */
.start-assessment-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.start-assessment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.start-assessment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}

.start-assessment-btn:hover::before {
    transform: translateX(100%);
}

.start-assessment-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.start-assessment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.start-assessment-btn i {
    font-size: 1.2rem;
}

.next-btn, .verify-btn, .submit-token-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(2, 132, 199, 0.15);
    position: relative;
    overflow: hidden;
}

.next-btn::before, .verify-btn::before, .submit-token-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.next-btn:disabled, .verify-btn:disabled, .submit-token-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, var(--gray-600), var(--gray-500));
    box-shadow: none;
    transform: none;
}

.next-btn:hover, .verify-btn:hover, .submit-token-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(2, 132, 199, 0.2);
}

.next-btn:hover::before, .verify-btn:hover::before, .submit-token-btn:hover::before {
    opacity: 1;
}

.next-btn:active, .verify-btn:active, .submit-token-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(2, 132, 199, 0.15);
}

.back-btn {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--gray-100);
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.back-btn:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Secure notice */
.secure-notice {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(2, 132, 199, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(2, 132, 199, 0.1);
    position: relative;
    overflow: hidden;
}

.secure-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}

.secure-notice i {
    color: var(--primary);
    font-size: 1rem;
    background: rgba(2, 132, 199, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-notice p {
    color: var(--gray-600);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* YouTube Channels */
.youtube-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.channel-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-container:hover {
    transform: translateY(-5px);
}

.youtube-channel {
    background: white;
    border-radius: 10px 10px 0 0;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    border-bottom: none;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.verification-box {
    background: var(--gray-100);
    border-radius: 0 0 10px 10px;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-top: 1px dashed var(--gray-300);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.channel-container:hover .youtube-channel {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(2, 132, 199, 0.2);
}

.channel-container:hover .verification-box {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(2, 132, 199, 0.15);
    border-top-color: var(--gray-300);
}

.verification-box .form-group {
    margin-bottom: 0;
}

.verification-box label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.verification-box .input-with-icon input {
    background-color: white;
    border-color: var(--gray-300);
    font-size: 0.9rem;
    padding: 0.7rem 1rem 0.7rem 2.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.verification-box .input-with-icon input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.youtube-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f43f5e, #ef4444);
    opacity: 0.8;
}

.channel-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #f1f5f9;
}

.channel-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(244, 63, 94, 0.5);
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.05), rgba(239, 68, 68, 0.05));
}

.channel-container:hover .channel-thumbnail {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.15);
}

.channel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
    background: linear-gradient(135deg, #0f172a, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.channel-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.9rem;
    line-height: 1.3;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(244, 63, 94, 0.15);
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: pulseAttention 2s infinite;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subscribe-btn::after {
    content: 'Click here first!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(244, 63, 94, 0.25);
    animation: none;
}

.subscribe-btn:hover::before {
    opacity: 1;
}

.subscribe-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.subscribe-btn i {
    font-size: 1rem;
}

@keyframes pulseAttention {
    0% {
        box-shadow: 0 6px 12px rgba(244, 63, 94, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(244, 63, 94, 0.3);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 6px 12px rgba(244, 63, 94, 0.15);
        transform: scale(1);
    }
}

/* Verification Form */
.verification-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.1rem;
}

.input-with-icon input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--gray-800);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-with-icon input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.input-with-icon input.error {
    border-color: var(--error);
    background-color: rgba(239, 68, 68, 0.05);
}

.input-with-icon input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-with-icon input:disabled {
    background-color: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    border-color: var(--gray-300);
    opacity: 0.8;
}

.input-with-icon input:disabled::placeholder {
    color: var(--gray-400);
    font-style: italic;
}

.verification-box.waiting {
    position: relative;
}

.verification-box.waiting::after {
    content: 'Please subscribe first';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    border-radius: 0 0 10px 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.verification-box.waiting.active::after {
    opacity: 1;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
    padding-left: 0.5rem;
}

.verification-status.verified {
    color: var(--success);
}

.verification-status.error {
    color: var(--error);
}

/* Token Options */
.token-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.token-option {
    background: white;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.token-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.token-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(2, 132, 199, 0.15);
}

.token-option:hover::before {
    opacity: 1;
}

.token-option.selected {
    border-color: var(--primary);
    background: rgba(2, 132, 199, 0.02);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.1);
}

.token-option.selected::before {
    opacity: 1;
}

.token-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(2, 132, 199, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.token-option:hover .token-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.25);
}

.token-option:hover .token-icon::after {
    opacity: 1;
}

.token-option.selected .token-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.25);
}

.token-option.selected .token-icon::after {
    opacity: 1;
}

.token-option h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
    background: linear-gradient(135deg, #0f172a, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.token-option p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Token Input */
.token-input-container {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
    border: 1px solid var(--gray-200);
    animation: fadeIn 0.5s ease;
    position: relative;
    overflow: hidden;
}

.token-input-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-dark), var(--primary));
}

/* Token verification indicator */
.input-with-icon {
    position: relative;
}

.token-verification-indicator {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.token-verification-indicator.visible {
    opacity: 1;
    right: 10px;
}

/* Highlighted submit button */
.submit-token-btn.verified {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
    animation: pulse-highlight 2s infinite;
    border: 2px solid rgba(16, 185, 129, 0.3);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.submit-token-btn.verified::before {
    content: '✓ ';
    font-weight: bold;
}

.submit-token-btn.verified:hover {
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
}

.submit-token-btn.verified:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(16, 185, 129, 0.2);
}

@keyframes pulse-highlight {
    0% {
        box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
    }
    50% {
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    }
    100% {
        box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .access-token-page {
        padding: 50px 12px 25px;
    }

    .access-token-container {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .access-token-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .access-token-header h2 {
        font-size: 1.4rem;
    }

    .header-logo {
        height: 40px;
    }

    .exit-link {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem;
    }

    .exit-link span {
        display: none;
    }

    .progress-container {
        margin-bottom: 1.25rem;
    }

    .progress-bar {
        height: 3px;
        margin-bottom: 1rem;
    }

    .progress-step .step-circle {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .progress-step span {
        font-size: 0.7rem;
    }

    .panel-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .panel-description {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .youtube-channels,
    .token-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 1.25rem 0;
    }

    .channel-container {
        gap: 0;
    }

    .youtube-channel {
        padding: 1rem 1rem 0.75rem;
    }

    .verification-box {
        padding: 0.75rem;
    }

    .token-option {
        padding: 1.25rem 1rem;
    }

    .token-input-container {
        padding: 1.25rem 1rem;
        margin: 1.25rem 0;
    }

    .channel-thumbnail {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .token-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .channel-info h4,
    .token-option h4 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .channel-info p,
    .token-option p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .subscribe-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .next-btn,
    .back-btn,
    .verify-btn,
    .submit-token-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .step-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.25rem;
        padding-top: 1rem;
    }

    .back-btn {
        order: 2;
    }

    .next-btn,
    .verify-btn,
    .submit-token-btn {
        order: 1;
    }

    .secure-notice {
        padding: 0.6rem 0.75rem;
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .secure-notice i {
        font-size: 0.9rem;
        width: 20px;
        height: 20px;
    }

    .secure-notice p {
        font-size: 0.75rem;
    }

    .verification-box .input-with-icon input {
        padding: 0.6rem 0.75rem 0.6rem 2rem;
        font-size: 0.85rem;
    }

    .token-verification-indicator {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .token-verification-indicator.visible {
        right: 8px;
    }

    .verification-box label {
        font-size: 0.8rem;
    }

    .verification-status {
        font-size: 0.75rem;
    }
}
