.debate-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.debate-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.debate-arguments {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.debate-pro, .debate-con {
    width: 48%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.debate-pro {
    background-color: #e8f5e9;
}

.debate-con {
    background-color: #ffebee;
}

.debate-pro h3, .debate-con h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.debate-pro p, .debate-con p {
    font-size: 16px;
    margin-bottom: 15px;
}

.debate-vote-bar-container {
    height: 30px;
    background-color: #f0f0f0;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.debate-vote-bar {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
}

.debate-vote-button, .debate-like-button {
    padding: 8px 15px;
    margin-right: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.debate-vote-button:hover, .debate-like-button:hover {
    background-color: #2980b9;
}

.debate-like-button {
    background-color: #e74c3c;
}

.debate-like-button:hover {
    background-color: #c0392b;
}

.debate-replies {
    margin-top: 30px;
}

.debate-reply {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.debate-reply-pro {
    border-left: 5px solid #4CAF50;
}

.debate-reply-con {
    border-left: 5px solid #e74c3c;
}

.debate-reply-form {
    margin-top: 30px;
}

.debate-reply-form textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.debate-reply-form select {
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.debate-reply-form input[type="submit"] {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.debate-reply-form input[type="submit"]:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .debate-pro, .debate-con {
        width: 100%;
    }

    .debate-vote-button, .debate-like-button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.debate-social-share {
    margin-top: 20px;
    text-align: center;
}

.debate-share-button {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #3b5998;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.debate-share-button.twitter {
    background-color: #1da1f2;
}

.debate-share-button.linkedin {
    background-color: #0077b5;
}

.debate-statistics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.debate-statistics-container > div {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.debate-statistics-container h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.debate-reply.new-reply {
    animation: fadeIn 0.5s;
}

.debate-vote-button.voted,
.debate-like-button.liked {
    animation: pulse 0.3s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}