/* CSS Variables */
:root {
    --text-color: #ffffff;
    --accent-color: #00d4ff;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container */
.container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.custom-text {
    font-size: 1.5rem;
    margin-top: 20px;
    color: var(--text-color);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Twitter Section */
.twitter-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    text-align: center;
}

.twitter-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.twitter-feed {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .logo-section {
        padding: 20px;
    }
    
    .twitter-section {
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    .custom-text {
        font-size: 1.2rem;
    }
    
    .twitter-title {
        font-size: 1.4rem;
    }
    
    .setup-instructions {
        font-size: 0.8rem;
        padding: 15px;
    }
}

/* Twitter Timeline Styling */
.twitter-timeline {
    border: none !important;
}
