/* Twitter Feed Overrides */
.twitter-feed {
    max-width: 800px;
    margin: 2rem auto;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
}

.twitter-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.twitter-footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.twitter-footer a:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* Loading State */
.loading-tweets {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #FFD700;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .twitter-feed {
        padding: 15px;
        margin: 1rem;
    }
    
    .tweet {
        padding: 12px;
    }
    
    .tweet-actions {
        gap: 10px;
    }
    
    .tweet-actions span {
        font-size: 0.8em;
    }
}
