@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;700;800;900&display=swap');

:root {
    --primary-green: #15803d;
    --primary-hover: #166534;
    --dark-bg: #0f172a;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-light: rgba(15, 23, 42, 0.08);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --radius-pill: 9999px;
    --radius-lg: 16px;
}

/* GLOBAL RESET & OVERFLOW FIX FOR MOBILE */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* ANNOUNCEMENT TICKER BAR */
.announcement-bar {
    background: #0f172a;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    text-align: center;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

/* FLOATING GLASS NAVBAR */
nav.oceon-nav {
    position: fixed;
    top: 42px !important;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px) !important;
    max-width: 1200px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08) !important;
}

.nav-brand {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

/* SECTION PADDING & OVERLAY FIX */
.section-space, header {
    padding-top: 140px !important;
}

.container {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* OCEON CARDS & BUTTONS */
.oceon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}

.oceon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -6px rgba(0,0,0,0.08);
}

.oceon-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}

.oceon-btn {
    background: var(--text-dark);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
}

.oceon-btn-primary {
    background: var(--primary-green) !important;
    color: #ffffff !important;
}

.oceon-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(21, 128, 61, 0.08);
    color: var(--primary-green);
    border: 1px solid rgba(21, 128, 61, 0.2);
}

.veg-badge-ui {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 2px solid #15803d;
    padding: 2px;
    border-radius: 4px;
    background: #ffffff;
    vertical-align: middle;
}

.veg-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #15803d;
    border-radius: 50%;
}

.icon-inline {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

/* ATC BUTTON STYLING */
.oceon-atc-btn {
    width: 100% !important;
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    outline: none !important;
    padding: 12px 20px !important;
    border-radius: 99px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.oceon-atc-btn:hover {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%) !important;
    transform: translateY(-2px) !important;
}

/* MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    nav.oceon-nav {
        top: 36px !important;
        width: calc(100% - 20px) !important;
        padding: 8px 16px !important;
    }
    .nav-links {
        display: none !important;
    }
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .announcement-content {
        display: inline-block;
        white-space: nowrap;
        animation: ticker 18s linear infinite;
        padding-left: 100%;
    }
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}