:root {
    --color-bg: #09090b;
    --color-text: #ffffff;
    --color-primary: #F7C11E; /* Bee Yellow */
    --color-accent: #CB333B;  /* Bee Red */
    --color-blue: #D1DEE3;    /* Bee Light Blue */
    --color-grey: #C6C8C9;    /* Logo Grey */
    --color-glass: rgba(255, 255, 255, 0.03);
    --color-glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow: hidden; /* Prevent scrolling for a clean landing page feel */
}

.landing-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a1c 0%, #050505 100%);
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.honeycomb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='69.282' viewBox='0 0 40 69.282' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 17.321v34.641L20 69.282 0 51.962V17.321L20 0l20 17.321zm-2 1.154L20 2.308 2 18.475v32.332l18 10.392 18-10.392V18.475z' fill='%23F7C11E' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 50px;
    z-index: 2;
    pointer-events: none;
}

.content-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 40px;
    background: rgba(9, 9, 11, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Brand Logo Styling */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

@keyframes wingFlapTop {
    0%, 100% { transform: rotate(0deg) skew(0deg); }
    50% { transform: rotate(-30deg) skew(-20deg); }
}
@keyframes wingFlapBottom {
    0%, 100% { transform: rotate(0deg) skew(0deg); }
    50% { transform: rotate(30deg) skew(20deg); }
}

.wing { transform-origin: 50px 30px; }
.wing-top { animation: wingFlapTop 0.05s infinite; }
.wing-bottom { animation: wingFlapBottom 0.05s infinite; }

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: -10px;
}

.logo-text-bee {
    font-size: 32px;
    font-weight: 700;
}

.b-letter {
    color: var(--color-primary);
    background: linear-gradient(to bottom, var(--color-primary) 50%, var(--color-accent) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ee-letters {
    color: var(--color-blue);
    margin-left: -2px;
}

.logo-text-impex {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-grey);
    letter-spacing: 1px;
}

/* Typography */
.landing-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-size: 16px;
    color: #a1a1aa;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Region Selector Cards */
.region-selector {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.region-card {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: 0;
    opacity: 0;
}

.pk-card .card-glow {
    background: radial-gradient(circle, rgba(0, 102, 0, 0.4) 0%, transparent 70%);
}

.uk-card .card-glow {
    background: radial-gradient(circle, rgba(1, 33, 105, 0.4) 0%, transparent 70%);
}

.region-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.region-card:hover .card-glow {
    width: 200%;
    padding-bottom: 200%;
    opacity: 1;
}

.flag-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.flag-icon svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-card h2 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.region-card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: #a1a1aa;
    font-weight: 500;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.hover-arrow {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    transform: scale(0.9);
}

.region-card:hover h2 {
    color: var(--color-primary);
}

.region-card:hover p {
    color: #fff;
}

.region-card:hover .hover-arrow {
    transform: scale(1.1) translateX(5px);
    background: var(--color-primary);
    color: #000;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
    
    .landing-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }

    .region-selector {
        flex-direction: column;
    }
    
    .landing-title {
        font-size: 36px;
    }
    
    .content-container {
        padding: 30px 20px;
    }
}
