/* Custom properties for easy theme management */
:root {
    --main-bg-color: #ffffff; /* White - Main Background */
    --container-bg-color: #f8f8f8; /* Slightly off-white for container */
    --text-color-dark: #333333; /* Dark gray/black for main text */
    --text-color-black: #000000; /* Pure black for emphasis */
    --accent-color: #ff8c00; /* Bright Orange - for accent/decoration */
    --button-text-color: #ffffff; /* White for button text */
    --border-color: #e0e0e0; /* Light gray border */
    --box-shadow-light: rgba(0, 0, 0, 0.1);
    --box-shadow-medium: rgba(0, 0, 0, 0.2);
    --border-radius-lg: 15px;
    --border-radius-md: 10px;
}

/* Global Reset & Box Sizing */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Body Styles */
body {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--main-bg-color); /* Main background is white */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* No scrollbar from subtle background */
    position: relative;
    text-align: center;
}

/* Subtle background pattern/texture (optional, can be removed) */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/white-prism.png') repeat; /* A very subtle white pattern */
    opacity: 0.2; /* Very subtle */
    z-index: 0;
}

/* Container for main content */
.container {
    background-color: var(--container-bg-color); /* Slightly off-white for the content box */
    backdrop-filter: blur(5px); /* Soft blur effect */
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin: 20px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 10px 25px var(--box-shadow-medium); /* Darker shadow for depth */
    border: 1px solid var(--border-color); /* Light border */
    z-index: 1;
    animation: fadeInScale 1s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Content Styling */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.title {
    font-size: 2.8em;
    color: var(--text-color-black); /* Title in pure black */
    margin-bottom: 15px;
    text-shadow: 0 1px 3px var(--box-shadow-light);
    font-weight: 700;
}

.message, .follow-us {
    font-size: 1.3em;
    line-height: 1.8;
    color: var(--text-color-dark); /* Main text in dark gray */
    max-width: 600px;
}

.message strong, .follow-us strong {
    color: var(--text-color-black); /* Emphasized text in pure black */
    font-weight: 700;
}

/* Instagram Button */
.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color); /* Orange background for button */
    color: var(--button-text-color); /* White text for button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 8px 15px var(--box-shadow-light);
    border: none;
    cursor: pointer;
}

.instagram-button:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 18px var(--box-shadow-medium);
    background-color: #ff9d2b; /* Slightly lighter orange on hover */
}

.instagram-button svg {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    fill: none;
    stroke: var(--button-text-color); /* White stroke for icon */
    stroke-width: 2; /* Ensure the stroke is visible */
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.2em;
    }

    .message, .follow-us {
        font-size: 1.1em;
    }

    .instagram-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        margin: 15px;
    }

    .title {
        font-size: 1.8em;
    }

    .message, .follow-us {
        font-size: 1em;
    }

    .instagram-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}