/* Eguweb Random Praise Message Styles */
.eguweb-random-praise-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eguweb-random-praise-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1DA1F2, #1991db);
}

.eguweb-random-praise-message .message {
    font-size: 1.4em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
    font-weight: 500;
    padding: 0 20px;
}

.eguweb-random-praise-message .tweet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #1DA1F2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.3);
}

.eguweb-random-praise-message .tweet-button:hover {
    background-color: #1991db;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.eguweb-random-praise-message .tweet-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(29, 161, 242, 0.3);
}

.eguweb-random-praise-message-debug {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.eguweb-random-praise-message-debug h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.eguweb-random-praise-message-debug ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eguweb-random-praise-message-debug li {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

.eguweb-random-praise-message-debug a {
    color: #1DA1F2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.eguweb-random-praise-message-debug a:hover {
    color: #1991db;
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .eguweb-random-praise-message {
        margin: 15px;
        padding: 20px;
    }

    .eguweb-random-praise-message .message {
        font-size: 1.2em;
        padding: 0 10px;
    }

    .eguweb-random-praise-message .tweet-button {
        padding: 10px 20px;
        font-size: 1em;
    }
} 