@import url('https://fonts.googleapis.com/css2?family=Actor&family=Alexandria:wght@100..900&family=Fredoka:wght@300..600&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Actor&family=Alexandria:wght@100..900&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
        
        :root {
        --bg: #111111;
        --glass: rgba(255,255,255,0.13);
        --glass-solid: rgba(255,255,255,0.22);
        --glass-border: rgba(255,255,255,0.22);
        --glass-blur: 24px;
        --accent: #4AA3FF;
        --accent2: #f9d923;
        --text: #F0F0F0;
        --text-secondary: #BBBBBB;
        --radius: 35px;
        --shadow: 0 8px 32px 0 rgba(34, 49, 63, 0.18), 0 1.5px 8px 0 rgba(74,163,255,0.08);
        --shadow-hover: 0 12px 40px 0 rgba(74,163,255,0.13), 0 2px 12px 0 rgba(74,163,255,0.10);
        --transition: 0.35s cubic-bezier(.4,0,.2,1);
        --motif: url('https://amarothan.com/motif.svg'); /* Replace with your watermark SVG */
        }
        html, body {
        height: 100%;
                background: linear-gradient(to bottom, #150610, #090319) fixed;

        font-family: 'Fredoka', sans-serif !important;
        color: var(--text);
        min-height: 100vh;
        scroll-behavior: smooth;
        }
        body {
        position: relative;
        overflow-x: hidden;
                background: linear-gradient(to bottom, #150610, #090319) fixed;

        }
        /* Parallax Motif */
        .motif-bg {
        position: fixed;
        top: 0; left: 0; width: 100vw; height: 100vh;
        z-index: 0;
        pointer-events: none;
        background: var(--motif) center center/60vw no-repeat;
        opacity: 0.07;
        filter: blur(2px) grayscale(0.2);
        animation: motifParallax 24s linear infinite alternate;
        }
        @keyframes motifParallax {
        0% { background-position: 60% 40%; }
        100% { background-position: 40% 60%; }
        }
        /* Header Bar */
.glass-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: linear-gradient(90deg, rgba(17,17,17,0.85) 60%, rgba(74,163,255,0.07) 100%);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1.5px solid var(--glass-border);
  box-shadow: 0 2px 24px 0 rgba(34,49,63,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4vw 1.1rem 4vw; /* More padding for left/right */
  transition: background var(--transition);
  max-width: 1200px;
  margin: 0 auto;
}      .logo-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
        .logo-row img {
        height: 44px;
        width: 44px;
        border-radius: 14px;
        background: rgba(255,255,255,0.18);
        box-shadow: 0 2px 8px rgba(0,0,0,0.09);
        padding: 0.2em;
        border: 1.5px solid rgba(255,255,255,0.22);
        backdrop-filter: blur(8px);
        }
        .logo-row h1 {
        font-size: 1.7rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        color: #fff;
        background: linear-gradient(90deg, #fff 60%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-left: 0.2em;
        filter: drop-shadow(0 2px 8px rgba(74,163,255,0.08));
        }
nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
  nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.07em;
  padding: 0.45em 1.1em;
  border-radius: 30px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
        nav a:hover, nav a.active {
        color: #fff;
        background: rgba(74,163,255,0.13);
        box-shadow: 0 2px 16px 0 rgba(74,163,255,0.13);
        text-shadow: 0 2px 8px #4aa3ff33;
        }
        /* Hero Panel */
        .hero-glass {
        margin: 2.5rem auto 2.5rem auto;
        max-width: 900px;
        background: var(--glass);
        border-radius: 40px;
        box-shadow: var(--shadow);
        border: 1.5px solid var(--glass-border);
        backdrop-filter: blur(var(--glass-blur));
        padding: 2.8rem 2.2rem 2.2rem 2.2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 2;
        animation: fadeInUp 1.1s cubic-bezier(.4,0,.2,1);
        }
        .hero-glass h2 {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        margin-bottom: 0.5rem;
        color: #fff;
        text-shadow: 0 2px 16px #4aa3ff22;
        }
        .hero-glass .date {
        color: var(--accent);
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 0.7rem;
        display: block;
        }
        .hero-glass .subtitle {
        font-size: 1.25rem;
        color: var(--text-secondary);
        margin-bottom: 0.2rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        }
        /* Glass Cards Grid */
.glass-grid {
  column-count: 2;
  column-gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  z-index: 2;
  position: relative;
}

@media (max-width: 900px) {
  .glass-grid {
    column-count: 1;
    column-gap: 1.5rem;
  }
}

.glass-card {
  display: block;
  break-inside: avoid;
  margin-bottom: 2.2rem;
}
 .glass-card {
  background: var(--glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  padding: 1.1rem 1.2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  animation: fadeInUp 1.1s cubic-bezier(.4,0,.2,1);
  will-change: transform, box-shadow;
}
        .glass-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--accent);
        transform: translateY(-4px) scale(1.018);
        }
        .glass-card h3 {
        font-size: 1.22rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.7rem;
        letter-spacing: 0.01em;
        display: flex;
        align-items: center;
        gap: 0.7em;
        }
        .glass-card .icon {
        font-size: 1.3em;
        color: var(--accent);
        filter: drop-shadow(0 2px 8px #4aa3ff33);
        vertical-align: middle;
        }
        .glass-card ul, .glass-card p {
        color: var(--text-secondary);
        font-size: 1.05em;
        margin-bottom: 0.7em;
        line-height: 1.7;
        }
        .glass-card ul {
        padding-left: 1.3em;
        margin-bottom: 0.7em;
        }
        .glass-card li {
        margin-bottom: 0.4em;
        }
        .glass-card a {
        color: var(--accent);
        text-decoration: underline;
        transition: color var(--transition), text-shadow var(--transition);
        }
        .glass-card a:hover {
        color: #fff;
        text-shadow: 0 2px 8px #4aa3ff55;
        }
        /* Back to Top Button */
        .back-to-top {
        position: fixed;
        right: 2.2rem;
        bottom: 2.2rem;
        z-index: 50;
        background: linear-gradient(90deg, var(--accent) 60%, var(--accent2) 100%);
        color: #fff;
        font-weight: 600;
        font-size: 1.08em;
        border: none;
        border-radius: 999px;
        padding: 0.7em 1.7em;
        box-shadow: 0 4px 24px #4aa3ff33;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s, transform 0.35s;
        backdrop-filter: blur(8px);
        outline: none;
        border: 1.5px solid var(--glass-border);
        display: flex;
        align-items: center;
        gap: 0.7em;
        }
        .back-to-top.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        }
        .back-to-top .icon {
        font-size: 1.2em;
        margin-right: 0.2em;
        }
        .back-to-top:active {
        transform: scale(0.97);
        }
        /* Footer */
        .amaro-footer {
        width: 100%;
        background: rgba(17,17,17,0.97);
        border-top: 1.5px solid var(--glass-border);
        padding: 2.2rem 0 1.2rem 0;
        color: var(--text-secondary);
        font-size: 1em;
        margin-top: 2.5em;
        box-shadow: 0 -2px 16px rgba(0,0,0,0.13);
        text-align: center;
        z-index: 10;
        position: relative;
        letter-spacing: 0.01em;
        }
        .amaro-footer .footer-logo {
        height: 36px;
        width: auto;
        margin-bottom: 0.7em;
        border-radius: 10px;
        background: #232323;
        padding: 0.2em;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        display: block;
        margin-left: auto;
        margin-right: auto;
        }
        /* Animations */
        @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(32px);}
        to { opacity: 1; transform: none;}
        }
        /* Responsive */
        @media (max-width: 900px) {
        .glass-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .hero-glass {
            padding: 2.2rem 1.1rem 1.5rem 1.1rem;
        }
        }
        @media (max-width: 600px) {
        .glass-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.7em;
            padding: 1rem 0.7rem 1rem 0.7rem;
        }
        .logo-row h1 {
            font-size: 1.1rem;
        }
        nav {
            gap: 0.5rem;
            width: 100%;
            flex-wrap: wrap;
        }
        .hero-glass {
            padding: 1.2rem 0.5rem 1.1rem 0.5rem;
        }
        .glass-card {
            padding: 1.2rem 0.7rem 1rem 0.7rem;
        }
        .back-to-top {
            right: 1rem;
            bottom: 1rem;
            font-size: 1em;
            padding: 0.6em 1.2em;
        }
        .amaro-footer {
            padding: 1.2rem 0 0.7rem 0;
            font-size: 0.98em;
        }
        }
        /* Scrollbar styling */
        ::-webkit-scrollbar {
        width: 8px;
        background: #23232a;
        }
        ::-webkit-scrollbar-thumb {
        background: #333a;
        border-radius: 8px;
        }
        ::selection {
        background: #4aa3ff44;
        }