/* ===== TWO TRUTHS & ONE LIE STYLES ===== */

/* ===== BREADCRUMB ===== */
.breadcrumb {
    margin: 0 auto 2rem;
    padding: 1rem 0;
    max-width: 900px;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    font-size: 0.95rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    color: var(--border-color);
    font-size: 1.2rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.breadcrumb span[aria-current="page"] {
    color: #6366f1;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.breadcrumb span[aria-current="page"]::before {
    content: '🎮';
    margin-right: 0.5rem;
    font-size: 0.9em;
}

/* ===== TOOL PAGE ===== */
.tool-page {
    padding: 1.5rem 0 5rem;
    animation: fadeIn 0.6s ease-out;
}

.tool-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.75rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tool-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
}

.tool-subtitle {
    text-align: center;
    color: var(--text-light);
    margin: 2rem auto 3rem;
    max-width: 800px;
    font-size: 1.125rem;
    line-height: 1.6;
    padding: 0 1rem;
}

/* ===== VIRAL STATS ===== */
/* ===== VIRAL STATS ===== */
.viral-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: var(--radius);
    border: 2px dashed #ec4899;
    margin: 2rem auto;
    max-width: 800px;
    animation: pulseWarning 2s infinite;
    text-align: center; /* Added this line */
}

@keyframes pulseWarning {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.stats-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: bounce 2s infinite;
    margin: 0 auto; /* Added this line */
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stats-content {
    flex: 1; /* Added this line */
    display: flex;
    flex-direction: column;
    align-items: center; /* Added this line */
}

.stats-content h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ec4899;
    font-size: 1.25rem;
    text-align: center; /* Added this line */
}

.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%; /* Added this line */
}

.stat-mini {
    text-align: center;
    padding: 0.75rem;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column; /* Added this line */
    align-items: center; /* Added this line */
}

.stat-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #6366f1;
}

.stat-number {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    color: #6366f1;
    margin-bottom: 0.25rem;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ===== TOOL FORM ===== */
.tool-form-container {
    max-width: 900px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.tool-form {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.tool-form::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 0;
}

.tool-form::after {
    content: '🎭';
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 0;
}

/* ===== FORM INTRO ===== */
.form-intro {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.intro-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: wiggle 3s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.form-intro h3 {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.form-intro p {
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== FORM STEPS ===== */
.form-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px dashed var(--border-color);
    position: relative;
    z-index: 1;
}

.form-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-step h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.form-step h3::before {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: inline-block;
}

.form-step-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* ===== INPUT FIELD ===== */
.input-field {
    margin-bottom: 1.5rem;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.label-icon {
    color: #6366f1;
    font-size: 1.1rem;
}

.field-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
}

.field-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.field-hint {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===== STATEMENTS GRID ===== */
.statements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.statement-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.truth-card {
    border-color: #10b981;
}

.truth-card::before {
    content: '✅';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.2;
}

.lie-card {
    border-color: #ef4444;
}

.lie-card::before {
    content: '🤥';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.2;
}

.statement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.truth-card:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.lie-card:hover {
    border-color: #ef4444;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 1.5rem;
}

.truth-card .card-icon {
    color: #10b981;
}

.lie-card .card-icon {
    color: #ef4444;
}

.card-title {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.125rem;
}

.statement-input {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
}

.statement-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Character Counter */
.char-counter {
    text-align: right;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===== STATEMENT TIPS ===== */
.statement-tips {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.statement-tips h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #6366f1;
}

.tip-icon {
    font-size: 1.25rem;
    color: #6366f1;
    flex-shrink: 0;
}

.tip-text {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #6366f1;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content {
    margin-top: 0.5rem;
}

.step-content h4 {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== FORM ACTIONS ===== */
.form-actions {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

.form-actions .btn {
    min-width: 300px;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #6366f1, #ec4899);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.form-actions .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.form-actions .btn:hover::before {
    left: 100%;
}

.form-actions .btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.loading-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.125rem;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* ===== FUN ERROR ===== */
.fun-error {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: var(--radius);
    border: 2px solid #ec4899;
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.error-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.error-content h5 {
    margin-top: 0;
    margin-bottom: 0.25rem;
    color: #ec4899;
}

.error-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ===== EXAMPLE GAMES ===== */
.example-games {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

.example-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.example-card {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #6366f1;
}

.example-player {
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.example-player::before {
    content: '👤';
    font-size: 1rem;
}

.example-statements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.example-statement {
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.example-statement::before {
    content: '✅';
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.example-statement.lie::before {
    content: '🤥';
    color: #ef4444;
}

.example-stats {
    text-align: right;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== GAME CREATED SUCCESS ===== */
.game-created-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.success-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: celebrate 1s ease;
}

@keyframes celebrate {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.game-created-container h2 {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Game Link Box */
.game-link-box {
    margin: 2rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
    border: 2px dashed #6366f1;
    max-width: 600px;
}

.link-display {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.link-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: white;
    color: var(--text-color);
    cursor: text;
    font-family: monospace;
}

.link-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-copy {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.link-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.share-btn {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #0D5CB6);
    color: white;
}

.link-btn {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Game Preview */
.game-preview {
    margin: 3rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
}

.game-preview h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.preview-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-bottom: 1px solid var(--border-color);
}

.player-icon {
    font-size: 1.5rem;
    color: #6366f1;
}

.player-name {
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.game-tag {
    background: #6366f1;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.statements-preview {
    padding: 1.5rem;
}

.statement-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.statement-item:last-child {
    border-bottom: none;
}

.statement-number {
    width: 30px;
    height: 30px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6366f1;
    flex-shrink: 0;
}

.statement-text {
    flex: 1;
    color: var(--text-color);
    line-height: 1.5;
    padding-top: 0.25rem;
}

.preview-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.preview-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===== VOTING PAGE ===== */
.voting-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.voting-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.voting-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voting-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Player Badge */
.player-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    border: 2px solid #6366f1;
    box-shadow: var(--shadow);
}

.badge-icon {
    font-size: 1.25rem;
    color: #6366f1;
}

.badge-text {
    font-weight: 600;
    color: var(--text-color);
}

.badge-count {
    background: #6366f1;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Voting Form */
.voting-form {
    margin: 2rem 0;
}

.statement-option {
    display: block;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.statement-option.selected {
    transform: translateX(10px);
}

.statement-option input[type="radio"] {
    display: none;
}

.option-content {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.statement-option:hover .option-content {
    border-color: #6366f1;
    box-shadow: var(--shadow);
}

.statement-option.selected .option-content {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.option-number {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.125rem;
}

.option-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.statement-option.selected .option-radio {
    border-color: #6366f1;
    background: #6366f1;
}

.statement-option.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.option-text {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.05rem;
    min-height: 60px;
}

.option-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hint-icon {
    color: #6366f1;
}

.voting-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

.voting-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* How to Play */
.how-to-play {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.how-to-play h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #6366f1;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-text {
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mini CTA */
.mini-cta {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.08));
    border-radius: var(--radius);
    border-left: 4px solid #6366f1;
}

.mini-cta p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.125rem;
}

.mini-cta a {
    color: #6366f1;
    font-weight: 700;
    text-decoration: none;
}

.mini-cta a:hover {
    text-decoration: underline;
}

/* ===== RESULTS PAGE ===== */
.results-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.results-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Player Card */
.player-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.player-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-icon {
    font-size: 2.5rem;
    color: white;
}

.player-info {
    flex: 1;
}

.player-info h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.5rem;
}

.player-stats {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.player-stats .stat {
    color: var(--text-color);
    font-weight: 500;
}

/* Statements Reveal */
.statements-reveal {
    margin: 3rem 0;
}

.statements-reveal h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.statement-reveal-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.truth-card {
    border-left: 6px solid #10b981;
}

.lie-card {
    border-left: 6px solid #ef4444;
    animation: pulseWarning 2s infinite;
}

.statement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.statement-number {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.125rem;
}

.truth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.truth-card .truth-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.lie-card .truth-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.statement-text {
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

/* Vote Bar */
.vote-bar-container {
    margin-top: 1rem;
}

.vote-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.vote-text, .vote-percentage {
    font-weight: 600;
}

.vote-bar {
    height: 12px;
    background: var(--bg-secondary);
    border-radius: 6px;
    overflow: hidden;
}

.vote-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease-out;
}

.truth-card .vote-fill {
    background: linear-gradient(90deg, #10b981, #059669);
}

.lie-card .vote-fill {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

/* Game Stats */
.game-stats {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.game-stats h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.game-stat-card {
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #6366f1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Share Results */
.share-results {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.share-results h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.share-results p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Create CTA */
.create-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius);
    border: 2px solid rgba(99, 102, 241, 0.2);
    margin: 3rem 0;
    text-align: left;
}

.cta-icon {
    font-size: 4rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); filter: brightness(1.2); }
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-size: 1.75rem;
}

.cta-content p {
    margin: 0 0 1.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px dashed var(--border-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #6366f1;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.faq-item h3::before {
    content: '🤔';
    font-size: 1.25rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== FUN STATS ===== */
.fun-stats {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.fun-stats h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #6366f1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ===== AD SECTIONS ===== */
.ad-section {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    padding: 1rem;
}

.ad-728 {
    min-height: 90px;
}

.ad-300 {
    min-height: 250px;
}

/* ===== MOBILE STICKY AD ===== */
.mobile-sticky-ad {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* ===== RELATED TOOLS ===== */
.related-tools {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px dashed var(--border-color);
}

.related-tools h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.75rem;
}

.tools-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tool-card-mini {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tool-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #6366f1;
}

.tool-icon-mini {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.tool-card-mini:hover .tool-icon-mini {
    transform: scale(1.1);
}

.tool-name-mini {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: var(--text-color);
}

.tool-desc-mini {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .tool-page {
        padding: 1rem 0 3rem;
    }
    
    .tool-title {
        font-size: 2rem;
    }
    
    .tool-subtitle {
        font-size: 1rem;
        margin: 1.5rem auto 2rem;
    }
    
    .tool-form {
        padding: 1.5rem;
    }
    
    .form-step {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 1.25rem;
    }
    
    .statements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .viral-stats {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .stats-grid-mini {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        padding: 1.5rem;
    }
    
    .results-header h2 {
        font-size: 1.75rem;
    }
    
    .game-created-container h2 {
        font-size: 1.75rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .link-display {
        flex-direction: column;
    }
    
    .btn-copy {
        width: 100%;
        justify-content: center;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .player-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .create-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-sticky-ad {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .ad-728 {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tool-title {
        font-size: 1.75rem;
    }
    
    .tool-form {
        padding: 1.25rem;
    }
    
    .form-step h3 {
        font-size: 1.25rem;
    }
    
    .statement-card {
        padding: 1.25rem;
    }
    
    .voting-header h2,
    .results-header h2 {
        font-size: 1.5rem;
    }
    
    .game-created-container h2 {
        font-size: 1.5rem;
    }
    
    .player-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .option-content {
        padding: 1.25rem;
    }
    
    .statement-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .quick-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .quick-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .tools-grid-mini {
        grid-template-columns: 1fr;
    }
    
    .tool-card-mini {
        padding: 1.25rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .statement-card:hover,
    .process-step:hover,
    .example-card:hover,
    .game-stat-card:hover,
    .stat-card:hover,
    .tip:hover,
    .step:hover,
    .tool-card-mini:hover,
    .btn:hover,
    .statement-option:hover .option-content {
        transform: none !important;
    }
    
    .statement-card:active,
    .example-card:active,
    .game-stat-card:active,
    .stat-card:active,
    .tool-card-mini:active {
        transform: scale(0.98) !important;
    }
    
    .statement-option .option-content:active {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05)) !important;
    }
}

/* Print styles */
@media print {
    .tool-form,
    .theme-toggle,
    .back-to-top,
    .ad-section,
    .footer,
    .viral-stats,
    .share-buttons,
    .quick-actions,
    .create-cta,
    .mini-cta,
    .how-to-play,
    .mobile-sticky-ad,
    .breadcrumb,
    .related-tools {
        display: none !important;
    }
    
    .results-container,
    .game-created-container {
        border: 2px solid #000;
        box-shadow: none !important;
        margin: 0;
        padding: 1rem;
        break-inside: avoid;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}