:root {
    --bg-color: #2b2b2b;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent-red: #ff3b30;
    --accent-yellow: #ffcc00;
    --accent-green: #34c759;
    --snapchat-yellow: #fffc00;
}

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

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #1a1a1a;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(43, 43, 43, 0) 0%, rgba(43, 43, 43, 1) 100%);
}

/* Warning Section */
.warning-section {
    text-align: center;
    padding: 10px 20px 30px;
    z-index: 10;
    position: relative;
    margin-top: -20px;
}

.warning-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.warning-title .emoji {
    font-size: 24px;
}

.warning-text {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 400;
}

.snapchat-icon {
    font-size: 24px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-bottom: 10px;
}

/* ICMR Card */
.icmr-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin: 0 20px;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}

.card-spx {
    animation: attention-zoom 2s infinite ease-in-out;
}

.card-forex {
    animation: attention-zoom 2s infinite ease-in-out;
    animation-delay: 0.3s;
}

.icmr-card-link:hover, .icmr-card-link:active {
    transform: scale(0.98);
}

.icmr-card-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 15px;
    display: block;
}

/* Follow CTA */
.follow-cta {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.2s;
}

.icmr-card-link:hover .follow-cta {
    background-color: rgba(255, 255, 255, 0.1);
}

.chart-emoji {
    font-size: 18px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 30px 20px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-height: 800px) {
    .hero-image-container {
        height: 280px;
    }

}

@keyframes attention-zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
