/* Gamemode announcement styling - matches post-card */
.post-card.gamemode-announcement {
    margin-bottom: 15px;
}

.post-card.gamemode-announcement .post-header {
    margin-bottom: 10px;
}

.post-card.gamemode-announcement .post-content {
    margin-bottom: 0;
}

.gamemode-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gamemode-card {
    text-align: center;
}

.gamemode-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.gamemode-card:hover .gamemode-image {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.gamemode-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.vs-divider {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 10px;
}

.announcement-instructions {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.announcement-instructions ol {
    line-height: 1.8;
}

.announcement-instructions li {
    margin-bottom: 4px;
}

.post-card.gamemode-announcement .hashtag {
    color: #4a9eff;
    font-weight: 600;
    background: rgba(74, 158, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(74, 158, 255, 0.3);
}

@media (max-width: 640px) {
    .gamemode-comparison {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        margin: -5px 0;
    }
    
    .gamemode-image {
        max-width: 200px;
    }
}

.gamemode-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.gamemode-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.gamemode-card:hover {
    transform: translateY(-5px);
}

.gamemode-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    margin-bottom: 12px;
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.gamemode-card:hover .gamemode-image {
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.6);
}

.gamemode-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-text {
    font-size: 32px;
    font-weight: 900;
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.announcement-cta {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    gap: 16px;
}

.cta-icon {
    font-size: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.95;
}

.cta-instructions {
    background: rgba(0,0,0,0.2);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid rgba(255,255,255,0.5);
}

.cta-instructions strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.cta-instructions li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.cta-instructions li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gamemode-announcement-post {
        padding: 20px;
    }
    
    .announcement-title {
        font-size: 22px;
    }
    
    .announcement-description {
        font-size: 14px;
    }
    
    .gamemode-comparison {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    
    .gamemode-image {
        max-width: 250px;
    }
    
    .gamemode-name {
        font-size: 18px;
    }
    
    .announcement-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-icon {
        font-size: 40px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-instructions {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .announcement-title {
        font-size: 20px;
    }
    
    .gamemode-image {
        max-width: 200px;
    }
    
    .vs-text {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }
}
