/* Gameplay Hero */
.gameplay-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.03) 0%, rgba(0, 168, 232, 0.05) 100%);
    
}

.gameplay-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gameplay-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Gameplay Explanation */
.gameplay-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark);
}

.gameplay-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.gameplay-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.gameplay-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.gameplay-card ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.gameplay-card li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* PvP Game Area */
.pvp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.players-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    gap: 30px;
}

.player-area {
    flex: 1;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.player-name {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.player-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.stat-box {
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary);
}

.game-canvas {
    background: #f0f4f8;
    border-radius: var(--border-radius-md);
    margin: 20px auto;
    display: block;
}

.game-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.game-btn {
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.game-btn:hover {
    background: #e05a2b;
    transform: translateY(-3px);
}

.game-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.match-result {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 20px;
    color: var(--primary);
    min-height: 2rem;
}

/* Game Log */
.game-log {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-top: 40px;
}

.game-log h3 {
    text-align: center;
    margin-bottom: 20px;
}

.log-entries {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: var(--border-radius-md);
}

.log-entry {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Transparency Section */
.transparency-section {
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.03) 0%, rgba(0, 168, 232, 0.05) 100%);
    padding: 80px 0;
    text-align: center;
}

.transparency-section h2 {
    margin-bottom: 40px;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.transparency-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.transparency-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .gameplay-hero h1 {
        font-size: 2.5rem;
    }
    
    .players-container {
        flex-direction: column;
    }
    
    .gameplay-card {
        padding: 30px 20px;
    }
    
    .game-canvas {
        width: 100%;
        height: auto;
    }
}