@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Orbitron:wght@400;700;900&family=Syncopate:wght@400;700&family=Work+Sans:wght@300;400;500;700&display=swap');

:root {
    --bg-dark: #030307;
    --bg-panel: rgba(10, 10, 20, 0.75);
    --color-gold: #ffd700;
    --color-gold-bright: #fff6a1;
    --color-gold-glow: rgba(255, 215, 0, 0.4);
    --color-silver: #d1d1e0;
    --color-silver-dark: #707080;
    --border-glass: rgba(255, 215, 0, 0.08);
    --border-active: rgba(255, 215, 0, 0.3);
    --font-metal: 'Cinzel Decorative', serif;
    --font-tech: 'Orbitron', sans-serif;
    --font-sans: 'Work Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-silver-dark), var(--color-gold));
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-bright);
}

body {
    background-color: var(--bg-dark);
    color: var(--color-silver);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* CRT Scanline and Solar Bloom Overlay */
body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 28, 0) 50%, rgba(0, 0, 0, 0.15) 50%);
    z-index: 9999;
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.8;
}

/* Custom Cursor */
.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    box-shadow: 0 0 10px var(--color-gold-glow);
}
.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
    box-shadow: 0 0 8px #fff;
}

/* Background Solar Flares & Starfield */
.solar-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 50% 10%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(209, 209, 224, 0.03) 0%, transparent 50%),
        #030308;
}

.starfield {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: -1;
    background-image: 
        radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(rgba(255,215,0,0.1) 1.5px, transparent 1.5px);
    background-size: 200px 200px, 350px 350px;
    background-position: 0 0, 40px 100px;
    opacity: 0.4;
    animation: starsDrift 180s linear infinite;
}

@keyframes starsDrift {
    from { background-position: 0 0, 40px 100px; }
    to { background-position: 1000px 500px, 1040px 600px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 1.2rem 0;
    background: rgba(3, 3, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-gold);
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.brand-logo span {
    transform: rotate(-45deg);
    font-family: var(--font-metal);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-gold);
}

.brand-text {
    font-family: var(--font-tech);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.1);
}

.brand-text span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 5px;
    margin-top: -3px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-silver-dark);
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
}

nav ul li a:hover {
    color: var(--color-gold);
    text-shadow: 0 0 8px var(--color-gold-glow);
}

/* Sound Button */
.sound-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    color: var(--color-silver);
    font-family: var(--font-tech);
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.sound-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 12px var(--color-gold-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 20%, var(--bg-dark) 90%);
    z-index: 1;
}

/* Rotating Alchemy Grid for Tipheret */
.alchemy-ring {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: spinRing 80s linear infinite;
}
.alchemy-ring::before {
    content: '';
    position: absolute;
    top: 30px; left: 30px; right: 30px; bottom: 30px;
    border: 2px dashed rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}
.alchemy-ring::after {
    content: '';
    position: absolute;
    top: 80px; left: 80px; right: 80px; bottom: 80px;
    border: 1px solid rgba(255, 215, 0, 0.04);
    border-radius: 50%;
    transform: rotate(45deg);
}
.alchemy-sigil {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 95,80 5,80' stroke='rgba(255,215,0,0.04)' stroke-width='0.5' fill='none'/><polygon points='50,95 95,20 5,20' stroke='rgba(255,215,0,0.03)' stroke-width='0.5' fill='none'/><circle cx='50' cy='50' r='10' stroke='rgba(255,215,0,0.05)' stroke-width='0.5' fill='none'/></svg>") center/cover no-repeat;
    opacity: 0.5;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-kicker {
    font-family: var(--font-tech);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--color-gold-glow);
}

.hero-title {
    font-family: var(--font-metal);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 15px var(--color-gold-glow);
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--color-silver-dark);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 1rem 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), #fff);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 35px var(--color-gold-glow), 0 0 15px rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 20px var(--color-gold-glow);
    transform: translateY(-2px);
}

/* Sections Global */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-metal);
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--color-gold-glow);
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    display: block;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 5px;
    margin-top: 0.8rem;
    text-transform: uppercase;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all 0.4s;
}

.glass-panel:hover {
    border-color: var(--border-active);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.12);
    transform: translateY(-3px);
}

/* Lore Section (Cosmic War) */
.lore-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #fff;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem auto;
}

.lore-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.lore-card h3 {
    font-family: var(--font-metal);
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.lore-card p {
    font-size: 0.95rem;
    color: var(--color-silver-dark);
    margin-bottom: 1rem;
}

/* Tipheret Tuning Console */
.tuner-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
    align-items: center;
}

.tuner-device {
    background: #06060c;
    border: 1px solid var(--border-active);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.tuner-screen {
    background: #010103;
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 0.8rem;
    border-radius: 4px;
    font-family: var(--font-tech);
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tuner-hz {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--color-gold-glow);
}

.tuner-dial-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem auto;
}

.tuner-dial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #10101f 40%, #080812 100%);
    border: 3px solid var(--color-silver-dark);
    position: relative;
    transform: rotate(0deg);
    transition: transform 0.1s linear;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.tuner-dial::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 30px;
    background: var(--color-gold);
    top: 10px;
    left: calc(50% - 2px);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-gold-glow);
}

.tuner-ticks {
    position: absolute;
    width: 190px;
    height: 190px;
    top: -15px;
    left: -15px;
    border-radius: 50%;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='48' stroke='rgba(255,215,0,0.1)' stroke-dasharray='1 4' stroke-width='1.5' fill='none'/></svg>") center/cover no-repeat;
}

.tuner-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.tuner-btn {
    background: #0e0e1a;
    border: 1px solid var(--border-glass);
    color: var(--color-silver);
    font-family: var(--font-tech);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.tuner-btn:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.tuner-readout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tuner-status-badge {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #00ff66;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tuner-status-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff66;
}

.tuner-readout h3 {
    font-family: var(--font-metal);
    font-size: 1.8rem;
    color: #fff;
}

.tuner-readout-desc {
    color: var(--color-silver-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Band Database Section */
.bands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.band-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.band-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.2rem;
}

.band-card h3 {
    font-family: var(--font-metal);
    font-size: 1.6rem;
    color: #fff;
}

.band-type {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--color-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.band-desc {
    font-size: 0.9rem;
    color: var(--color-silver-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.band-meta {
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.band-meta-label {
    color: var(--color-gold);
    font-family: var(--font-tech);
}

/* Interactive Media Player & Visualizer */
.player-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3rem;
}

.player-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.player-track-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.player-album-art {
    width: 90px;
    height: 90px;
    border: 1px solid var(--border-active);
    background: radial-gradient(circle, #18182a 0%, #06060c 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.player-album-art::before {
    content: '◈';
    font-family: var(--font-metal);
    color: var(--color-gold);
    font-size: 2rem;
    animation: rotateCircle 15s linear infinite;
}

.player-track-details h3 {
    font-family: var(--font-metal);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.player-track-details p {
    font-family: var(--font-tech);
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Equalizer / Visualizer Canvas */
.visualizer-box {
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    height: 120px;
    background: #010103;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.visualizer-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.player-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.player-btn-group {
    display: flex;
    gap: 1rem;
}

.player-ctrl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: #0a0a14;
    color: var(--color-silver);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.player-ctrl-btn:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
    color: var(--color-gold);
}

.player-ctrl-btn.play-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-gold), #fff);
    color: var(--bg-dark);
    border: none;
}

.player-ctrl-btn.play-btn:hover {
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.player-time {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--color-silver-dark);
}

/* Playlist / Track selector */
.playlist-panel {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.playlist-panel h4 {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.playlist-track {
    background: #06060c;
    border: 1px solid var(--border-glass);
    padding: 1rem;
    border-radius: 4px;
    text-align: left;
    transition: all 0.3s;
}

.playlist-track:hover {
    border-color: var(--border-active);
    transform: translateX(5px);
}

.playlist-track.active {
    border-color: var(--color-gold);
    background: linear-gradient(to right, rgba(255, 215, 0, 0.05), transparent);
}

.playlist-track-name {
    font-family: var(--font-metal);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.playlist-track-band {
    font-family: var(--font-tech);
    color: var(--color-gold);
    font-size: 0.75rem;
}

/* Real-World Influence Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    width: 1px;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.timeline-node {
    margin-bottom: 5rem;
    position: relative;
    width: 50%;
    padding: 0 2.5rem;
}

.timeline-node:nth-child(even) {
    margin-left: 50%;
}

.timeline-node::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--color-gold);
    top: 5px;
    z-index: 5;
    box-shadow: 0 0 8px var(--color-gold-glow);
}

.timeline-node:nth-child(odd)::after {
    right: -5px;
}

.timeline-node:nth-child(even)::after {
    left: -5px;
}

.timeline-year {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 0.4rem;
    text-shadow: 0 0 8px var(--color-gold-glow);
}

.timeline-node:nth-child(even) .timeline-year {
    color: #fff;
    text-shadow: none;
}

.timeline-title {
    font-family: var(--font-metal);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--color-silver-dark);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 3rem 0;
    background: #010103;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo-diamond {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-gold);
    transform: rotate(45deg);
}

.footer-logo-text {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 2px;
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--color-silver-dark);
    line-height: 1.7;
}

.footer-col h5 {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--color-silver-dark);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-silver-dark);
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Reveal Scroll animation class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.1, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness adjustments */
@media (max-width: 900px) {
    .hero-title { font-size: 3.5rem; }
    .tuner-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .player-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .lore-columns { grid-template-columns: 1fr; gap: 2rem; }
    .timeline-container::before { left: 0; }
    .timeline-node { width: 100%; padding: 0 1.5rem; margin-left: 0 !important; }
    .timeline-node::after { left: -5px !important; right: auto !important; }
    nav ul { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
