.dailyword-main {
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.game-header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.game-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(157, 80, 255, 0.1);
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-header-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.game-header-section p {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.game-header-section p .tip {
    display: block;
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.benchmark-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.bench-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.bench-item span:first-child {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.bench-item .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

/* Game Guide Styles */
.game-guide {
    max-width: 700px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.guide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.guide-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transform: translateY(-5px);
}

.guide-item i {
    color: var(--accent-cyan);
    background: rgba(0, 242, 255, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.guide-item span {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.guide-item span strong {
    color: var(--text-white);
}

/* Input Section */
.input-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.input-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.input-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

#guess-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: var(--transition);
}

#guess-input:focus {
    border-color: var(--accent-cyan);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

#guess-btn {
    padding: 0 2rem;
    background: var(--accent-cyan);
    border: none;
    border-radius: 16px;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

#guess-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
}

.input-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--text-white);
}

#hint-btn {
    color: var(--accent-purple);
}

/* History Section */
.history-section {
    max-width: 800px;
    margin: 0 auto;
}

.history-card {
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    overflow: hidden;
}

.history-header {
    display: grid;
    grid-template-columns: 80px 1fr 150px 100px;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border-glass);
}

.history-list {
    max-height: 500px;
    overflow-y: auto;
}

.history-item {
    display: grid;
    grid-template-columns: 80px 1fr 150px 100px;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
    transition: var(--transition);
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.history-item .word {
    font-weight: 600;
    font-size: 1.1rem;
}

.history-item .sim-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.history-item .sim-val {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: var(--accent-cyan);
}

.history-item .sim-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.history-item .sim-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 3px;
    transition: width 1s ease-out;
}

.history-item .rank {
    font-weight: 700;
    color: var(--text-dim);
}

.history-item.top-rank .rank {
    color: #ffd700;
}

.empty-state {
    padding: 4rem;
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .game-header-section h1 { font-size: 2.5rem; }
    .game-guide {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .guide-item {
        flex-direction: row;
        text-align: left;
        padding: 0.8rem;
    }
    .guide-item i {
        flex-shrink: 0;
    }
    .input-wrapper { flex-direction: column; }
    #guess-btn { padding: 1rem; }
    .history-header, .history-item {
        grid-template-columns: 50px 1fr 100px 60px;
        padding: 1rem;
    }
}
