/* Gameplay Page Specific Styles */

/* Gameplay Hero Section */
.gameplay-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 30%, #2d1b69 70%, #9d4edd 100%);
}

.gameplay-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.gameplay-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-accent {
    display: block;
    color: #b8c5d6;
    font-size: 0.6em;
    font-weight: 400;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, #00d4ff, #9d4edd, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gameplay-hero-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00d4ff;
    font-weight: 600;
}

.quick-stat i {
    font-size: 1.2rem;
    color: #ffd700;
}

/* How to Play Section */
.how-to-play {
    background: linear-gradient(135deg, #1a2332 0%, #2d1b69 100%);
    padding: 100px 0;
}

.how-to-play-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gameplay-demo {
    position: relative;
}

.demo-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-background {
    position: relative;
    height: 400px;
    background: linear-gradient(180deg, #87CEEB 0%, #98FB98 100%);
    border-radius: 15px;
    overflow: hidden;
}

.floating-platform {
    position: absolute;
    width: 80px;
    height: 15px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.platform-1 {
    bottom: 80px;
    left: 20px;
    animation: float 3s ease-in-out infinite;
}

.platform-2 {
    bottom: 160px;
    right: 30px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.platform-3 {
    bottom: 240px;
    left: 40px;
    animation: float 3s ease-in-out infinite 1s;
}

.platform-4 {
    bottom: 320px;
    right: 20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

.demo-egg {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.demo-obstacle {
    position: absolute;
    color: #ff4757;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.obstacle-1 {
    bottom: 200px;
    left: 60px;
}

.obstacle-2 {
    bottom: 280px;
    right: 50px;
}

.demo-controls {
    margin-top: 20px;
    text-align: center;
}

.demo-btn {
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

.demo-btn:active {
    transform: translateY(0);
}

.gameplay-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.instruction-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.instruction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.instruction-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.instruction-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.instruction-card p {
    color: #b8c5d6;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Power-ups Section */
.power-ups {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    padding: 100px 0;
}

.power-ups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.power-up-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.power-up-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(157, 78, 221, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.power-up-card:hover::before {
    opacity: 1;
}

.power-up-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.power-up-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.power-up-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 0;
}

.power-up-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00d4ff;
    position: relative;
    z-index: 1;
}

.power-up-card p {
    color: #b8c5d6;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.power-up-stats {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #b8c5d6;
}

.stat-value {
    font-weight: 600;
    color: #ffd700;
}

.rarity-common { color: #28a745; }
.rarity-uncommon { color: #17a2b8; }
.rarity-rare { color: #9d4edd; }
.rarity-legendary { color: #ffd700; }

.power-up-tip {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
}

.power-up-tip i {
    font-size: 2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.power-up-tip p {
    color: #b8c5d6;
    margin: 0;
    line-height: 1.6;
}

/* Game Modes Section */
.game-modes {
    background: linear-gradient(135deg, #2d1b69 0%, #1a2332 100%);
    padding: 100px 0;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.mode-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mode-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mode-header {
    text-align: center;
    margin-bottom: 25px;
}

.mode-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.mode-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.mode-difficulty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.difficulty-label {
    font-size: 0.9rem;
    color: #b8c5d6;
}

.difficulty-stars {
    color: #ffd700;
}

.mode-description {
    margin-bottom: 25px;
}

.mode-description p {
    color: #b8c5d6;
    line-height: 1.6;
}

.mode-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.feature i {
    color: #00d4ff;
    width: 16px;
}

.mode-rewards h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.reward-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reward {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Unlockable Worlds Section */
.unlockable-worlds {
    background: linear-gradient(135deg, #0f1419 0%, #2d1b69 100%);
    padding: 100px 0;
}

.worlds-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.world-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.world-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.world-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.world-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.world-card:hover .world-image img {
    transform: scale(1.1);
}

.world-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.world-status {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.world-status.unlocked {
    background: rgba(40, 167, 69, 0.8);
    color: white;
}

.world-status.locked {
    background: rgba(108, 117, 125, 0.8);
    color: white;
}

.world-info {
    padding: 25px;
}

.world-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.world-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.world-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.feature-item i {
    color: #ffd700;
    width: 16px;
}

.world-unlock {
    text-align: center;
}

.unlock-requirement {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.world-progress {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-progress h3 {
    text-align: center;
    color: #00d4ff;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.progress-bar {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #9d4edd, #ffd700);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -20px;
}

.marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.marker.completed {
    color: #00d4ff;
}

.marker.current {
    color: #ffd700;
}

.marker.locked {
    color: #6c757d;
}

.marker::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
}

.progress-text {
    text-align: center;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.highlight {
    color: #ffd700;
    font-weight: 600;
}

/* Enemies & Traps Section */
.enemies-traps {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    padding: 100px 0;
}

.enemies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.enemy-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enemy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 71, 87, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enemy-card:hover::before {
    opacity: 1;
}

.enemy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.enemy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #ff6b35, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.enemy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff6b35;
    position: relative;
    z-index: 1;
}

.enemy-card p {
    color: #b8c5d6;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.enemy-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.enemy-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.danger-level {
    display: flex;
    gap: 2px;
}

.danger-level::before,
.danger-level::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #6c757d;
    border-radius: 50%;
}

.level-2::before { background: #ffc107; }
.level-2::after { background: #ffc107; }

.level-3::before,
.level-3::after { background: #fd7e14; }
.level-3 { position: relative; }
.level-3::before { content: ''; position: absolute; left: 16px; }

.level-4::before,
.level-4::after { background: #dc3545; }
.level-4 { position: relative; }
.level-4::before { content: ''; position: absolute; left: 16px; }
.level-4 { position: relative; }
.level-4::after { content: ''; position: absolute; left: 24px; }

.level-5::before,
.level-5::after { background: #6f42c1; }
.level-5 { position: relative; }
.level-5::before { content: ''; position: absolute; left: 16px; }
.level-5::after { content: ''; position: absolute; left: 24px; }
.level-5 { position: relative; }
.level-5 { position: relative; }

.survival-tips {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.survival-tips h3 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.tip i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip p {
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
}

/* Leaderboards & Achievements Section */
.leaderboards-achievements {
    background: linear-gradient(135deg, #2d1b69 0%, #9d4edd 100%);
    padding: 100px 0;
}

.achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.leaderboard-section h3,
.achievements-section h3 {
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.leaderboard-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b8c5d6;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active {
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    color: white;
    border-color: transparent;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.leaderboard-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 60px 1fr 80px 100px;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 60px 1fr 80px 100px;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.leaderboard-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.leaderboard-row:last-child {
    border-bottom: none;
}

.rank {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.rank-1 .rank { color: #ffd700; }
.rank-2 .rank { color: #c0c0c0; }
.rank-3 .rank { color: #cd7f32; }

.player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.player span {
    color: #b8c5d6;
    font-weight: 600;
}

.score {
    color: #00d4ff;
    font-weight: 600;
    text-align: center;
}

.reward {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffd700;
    font-size: 0.9rem;
}

.your-rank {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.achievement-card.unlocked {
    border-color: rgba(40, 167, 69, 0.5);
    background: rgba(40, 167, 69, 0.1);
}

.achievement-card.progress {
    border-color: rgba(255, 193, 7, 0.5);
    background: rgba(255, 193, 7, 0.1);
}

.achievement-card.locked {
    opacity: 0.6;
}

.achievement-card.legendary {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.achievement-info {
    flex: 1;
}

.achievement-info h4 {
    color: #00d4ff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.achievement-info p {
    color: #b8c5d6;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.achievement-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.achievement-progress .progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.achievement-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #fd7e14);
    border-radius: 3px;
}

.achievement-progress span {
    color: #ffc107;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 60px;
}

.achievement-reward {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
}

.achievement-status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.achievement-card.unlocked .achievement-status {
    background: #28a745;
    color: white;
}

.achievement-card.locked .achievement-status {
    background: #6c757d;
    color: white;
}

/* Gameplay CTA Section */
.gameplay-cta {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d1b69 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4ff, #9d4edd, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #b8c5d6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.w35 {
    width: 35%;
}
.w67 {
    width: 67%;
}
.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gameplay-hero-title {
        font-size: 2.5rem;
    }
    
    .quick-stats {
        gap: 20px;
    }
    
    .how-to-play-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gameplay-instructions {
        grid-template-columns: 1fr;
    }
    
    .power-ups-grid {
        grid-template-columns: 1fr;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .worlds-container {
        grid-template-columns: 1fr;
    }
    
    .enemies-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 25px 1fr 60px 70px;
        gap: 10px;
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gameplay-hero-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .demo-container {
        padding: 20px;
    }
    
    .demo-background {
        height: 300px;
    }
    
    .power-up-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .achievement-progress {
        justify-content: center;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Demo Animation States */
.demo-egg.jumping {
    animation: eggJump 0.8s ease-out;
}

@keyframes eggJump {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    25% {
        transform: translateX(-50%) translateY(-60px);
    }
    50% {
        transform: translateX(-50%) translateY(-100px);
    }
    75% {
        transform: translateX(-50%) translateY(-60px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* Power-up specific animations */
.power-up-card[data-powerup="feather"]:hover .power-up-icon {
    animation: featherFloat 2s ease-in-out infinite;
}

.power-up-card[data-powerup="magnet"]:hover .power-up-icon {
    animation: magnetPull 1s ease-in-out infinite;
}

.power-up-card[data-powerup="time"]:hover .power-up-icon {
    animation: timeSlow 3s linear infinite;
}

@keyframes featherFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes magnetPull {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes timeSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}