/* ============================================================
   TARIK TAMBANG GEOGRAFI — Design System
   Mobile-first, forest green palette, Plus Jakarta Sans
   ============================================================ */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
    /* Forest Green Palette */
    --forest-900: #0D2B1F;
    --forest-800: #153E2E;
    --forest-700: #1E543D;
    --forest-600: #2A6B4F;
    --forest-500: #368360;
    --forest-400: #4DA074;
    --forest-300: #72BD8E;
    --forest-200: #A3D6B0;
    --forest-100: #CFEBD6;
    --forest-50:  #EEF8F3;

    /* Accent Colors */
    --accent-gold:  #D4A843;
    --accent-orange:#E87A3F;
    --accent-red:   #D94848;
    --accent-blue:  #3B82C4;

    /* Team Colors */
    --team-gunung:  #4ADE80;  /* Green for mountains */
    --team-gunung-bg: rgba(74, 222, 128, 0.1);
    --team-laut:    #38BDF8;  /* Blue for sea */
    --team-laut-bg: rgba(56, 189, 248, 0.1);

    /* Neutral */
    --white:    #FFFFFF;
    --gray-50:  #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Typography */
    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Layout */
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--forest-900);
    color: var(--white);
    min-height: 100vh;
    min-height: 100dvh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Screen Management ───────────────────────────── */
.screen {
    display: none;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: var(--safe-bottom);
}

.screen.active {
    display: flex;
    flex-direction: column;
}

/* ─── Utility Classes ─────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--gray-400); }
.text-accent { color: var(--accent-gold); }
.text-sm { font-size: var(--fs-sm); }
.text-bold { font-weight: 700; }

/* ─── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}

.btn:active {
    transform: scale(0.97);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--fs-sm); }
.btn-md { padding: var(--space-3) var(--space-6); font-size: var(--fs-base); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--fs-lg); }

.btn-full { width: 100%; }

.btn-primary {
    background: var(--accent-gold);
    color: var(--forest-900);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover:not(:disabled) {
    background: #e0b650;
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--forest-600);
    color: var(--white);
    border: 2px solid var(--forest-500);
}
.btn-secondary:hover:not(:disabled) {
    background: var(--forest-500);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
    padding: var(--space-2);
}
.btn-ghost:hover {
    color: var(--white);
}

.btn-icon { font-size: 1.2em; }

.btn-back {
    font-size: var(--fs-base);
    padding: var(--space-2);
    margin-right: var(--space-4);
}

/* ─── LANDING PAGE ────────────────────────────────── */
.landing-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-6);
    text-align: center;
    gap: var(--space-6);
}

.landing-logo {
    width: 80px;
    height: 80px;
    background: var(--forest-700);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon { font-size: 2.5rem; }

.landing-title {
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.landing-subtitle {
    color: var(--gray-300);
    font-size: var(--fs-base);
    max-width: 300px;
    line-height: 1.7;
}

.landing-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
    max-width: 320px;
}

.landing-footer {
    margin-top: var(--space-4);
}

/* ─── SCREEN HEADER ───────────────────────────────── */
.screen-header {
    display: flex;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    background: var(--forest-800);
    border-bottom: 1px solid var(--forest-700);
    position: sticky;
    top: 0;
    z-index: 100;
}

.screen-header h2 {
    font-size: var(--fs-xl);
    font-weight: 700;
}

.screen-body {
    flex: 1;
    padding: var(--space-6);
    overflow-y: auto;
}

/* ─── FORMS ────────────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: var(--space-2);
}

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--forest-800);
    border: 2px solid var(--forest-600);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font);
    font-size: var(--fs-base);
    transition: border-color var(--transition-fast);
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
    margin-right: var(--space-2);
    vertical-align: middle;
}

/* ─── TEAM SELECT ──────────────────────────────────── */
.team-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.team-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-6) var(--space-4);
    background: var(--forest-800);
    border: 3px solid var(--forest-600);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.team-option:hover {
    border-color: var(--forest-400);
}

.team-option.selected {
    border-color: var(--accent-gold);
    background: rgba(212, 168, 67, 0.1);
    box-shadow: var(--shadow-md);
}

.team-icon { font-size: 2rem; }
.team-name { font-weight: 700; font-size: var(--fs-sm); }

.team-gunung.selected { border-color: var(--team-gunung); background: var(--team-gunung-bg); }
.team-laut.selected { border-color: var(--team-laut); background: var(--team-laut-bg); }

/* ─── LOBBY ────────────────────────────────────────── */
.lobby-header {
    text-align: center;
    padding: var(--space-6);
    background: var(--forest-800);
    border-bottom: 1px solid var(--forest-700);
}

.lobby-roomcode {
    margin-bottom: var(--space-3);
}

.roomcode-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-1);
}

.roomcode-value {
    font-size: var(--fs-3xl);
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

.lobby-status {
    font-size: var(--fs-sm);
    color: var(--gray-400);
}

.lobby-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-4);
    align-items: start;
    margin-bottom: var(--space-6);
}

.lobby-team {
    padding: var(--space-4);
    border-radius: var(--radius-md);
}

.lobby-team h3 {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-3);
    text-align: center;
}

.team-gunung-bg { background: var(--team-gunung-bg); border: 1px solid rgba(74,222,128,0.3); }
.team-laut-bg { background: var(--team-laut-bg); border: 1px solid rgba(56,189,248,0.3); }

.lobby-vs {
    display: flex;
    align-items: center;
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--accent-gold);
    padding-top: var(--space-8);
}

.lobby-player-list {
    list-style: none;
    min-height: 40px;
}

.lobby-player-list li {
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-sm);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-1);
}

/* ─── ARENA ────────────────────────────────────────── */
.arena-scorebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    background: var(--forest-800);
    border-bottom: 1px solid var(--forest-700);
}

.score-team {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.score-icon { font-size: 1.2rem; }
.score-label { font-size: var(--fs-xs); font-weight: 600; color: var(--gray-400); }
.score-value { font-size: var(--fs-xl); font-weight: 800; }

.score-gunung .score-value { color: var(--team-gunung); }
.score-laut .score-value { color: var(--team-laut); }

.score-center {
    text-align: center;
}

.score-round {
    font-size: var(--fs-xs);
    color: var(--gray-400);
}

/* ─── ROPE ARENA (p5.js Canvas) ─────────────────────── */
.arena-rope-container {
    display: flex;
    align-items: center;
    padding: var(--space-2);
    gap: var(--space-1);
}

.arena-zone {
    font-size: var(--fs-xs);
    font-weight: 800;
    color: var(--gray-500);
    writing-mode: vertical-lr;
    letter-spacing: 0.1em;
    padding: var(--space-2) var(--space-1);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.zone-gunung { background: rgba(74,222,128,0.1); }
.zone-laut { background: rgba(56,189,248,0.1); }

.rope-canvas-container {
    flex: 1;
    min-height: 180px;
    max-height: 280px;
    border-radius: var(--radius-md);
    border: 2px solid var(--forest-600);
    overflow: hidden;
    background: var(--forest-900);
    position: relative;
}

.rope-canvas-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* ─── CSS Fallback Rope (saat p5.js tidak tersedia) ──── */
.rope-fallback {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, 
        rgba(74,222,128,0.15) 0%, 
        rgba(13,43,31,0.9) 40%, 
        rgba(13,43,31,0.9) 60%, 
        rgba(56,189,248,0.15) 100%);
}

.rope-fallback-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212,168,67,0.5);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.rope-fallback::before {
    content: '';
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    height: 4px;
    background: #8B6914;
    border-radius: 2px;
    transform: translateY(-50%);
}

.rope-fallback::after {
    content: '⛰️';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    z-index: 1;
}

/* ─── QUESTION CARD ────────────────────────────────── */
.question-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-4);
    overflow-y: auto;
}

.question-timer {
    position: relative;
    height: 6px;
    background: var(--forest-700);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.timer-bar {
    height: 100%;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
    transition: width 1s linear, background 0.3s ease;
    width: 100%;
}

.timer-bar.warning { background: var(--accent-orange); }
.timer-bar.danger { background: var(--accent-red); }

.timer-text {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--gray-400);
}

.question-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.question-badge {
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: var(--forest-600);
    color: var(--gray-200);
}

.question-boss {
    display: none;
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: var(--accent-gold);
    color: var(--forest-900);
}

.question-boss.show { display: inline; }

.question-text {
    font-size: var(--fs-lg);
    font-weight: 600;
    line-height: 1.6;
    padding: var(--space-4);
    background: var(--forest-800);
    border-radius: var(--radius-md);
    border: 1px solid var(--forest-600);
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.option-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--forest-800);
    border: 2px solid var(--forest-600);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font);
    font-size: var(--fs-base);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.option-btn .option-letter {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-700);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: var(--fs-sm);
    flex-shrink: 0;
}

.option-btn:hover:not(:disabled),
.option-btn:focus-visible {
    border-color: var(--accent-gold);
    background: rgba(212,168,67,0.1);
}

.option-btn.selected {
    border-color: var(--accent-gold);
    background: rgba(212,168,67,0.15);
}

.option-btn.selected .option-letter {
    background: var(--accent-gold);
    color: var(--forest-900);
}

.option-btn.correct {
    border-color: var(--team-gunung);
    background: var(--team-gunung-bg);
}

.option-btn.wrong {
    border-color: var(--accent-red);
    background: rgba(217,72,72,0.1);
}

.option-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* ─── HOST VIEW ────────────────────────────────────── */
.host-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    gap: var(--space-4);
    text-align: center;
}

.host-question-text {
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1.5;
}

.host-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    width: 100%;
    max-width: 500px;
}

.host-option {
    padding: var(--space-4);
    background: var(--forest-800);
    border: 2px solid var(--forest-600);
    border-radius: var(--radius-md);
    font-size: var(--fs-lg);
    font-weight: 600;
}

.host-option span {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gray-400);
    margin-bottom: var(--space-1);
}

.host-answer-reveal {
    display: none;
    padding: var(--space-4) var(--space-6);
    background: rgba(74,222,128,0.15);
    border: 2px solid var(--team-gunung);
    border-radius: var(--radius-md);
    font-size: var(--fs-xl);
    font-weight: 700;
}

/* ─── RESULTS ──────────────────────────────────────── */
.results-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-6);
    gap: var(--space-8);
    text-align: center;
}

.results-winner .winner-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-3);
}

.winner-title {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--accent-gold);
}

.winner-subtitle {
    font-size: var(--fs-base);
    color: var(--gray-300);
    margin-top: var(--space-2);
}

.results-scores {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.results-team {
    text-align: center;
}

.results-icon { font-size: 2rem; display: block; }
.results-name { font-size: var(--fs-xs); color: var(--gray-400); font-weight: 600; }
.results-score { font-size: var(--fs-3xl); font-weight: 800; }

.results-gunung .results-score { color: var(--team-gunung); }
.results-laut .results-score { color: var(--team-laut); }

.results-divider {
    font-size: var(--fs-sm);
    font-weight: 800;
    color: var(--gray-500);
}

.results-detail {
    width: 100%;
    max-width: 400px;
}

.results-detail h4 {
    font-size: var(--fs-sm);
    color: var(--gray-400);
    margin-bottom: var(--space-3);
}

.results-player-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-sm);
    border-bottom: 1px solid var(--forest-700);
}

.results-player-row .p-rank { color: var(--accent-gold); font-weight: 700; width: 30px; }
.results-player-row .p-name { flex: 1; text-align: left; }
.results-player-row .p-score { font-weight: 700; }

.results-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
    max-width: 320px;
}

/* ─── LEADERBOARD ──────────────────────────────────── */
.leaderboard-list {
    max-width: 500px;
    margin: 0 auto;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--forest-800);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2);
}

.lb-rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-700);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: var(--fs-sm);
}

.lb-rank.top1 { background: var(--accent-gold); color: var(--forest-900); }
.lb-rank.top2 { background: var(--gray-400); color: var(--forest-900); }
.lb-rank.top3 { background: var(--accent-orange); color: var(--white); }

.lb-name { flex: 1; font-weight: 600; font-size: var(--fs-sm); }
.lb-stats { font-size: var(--fs-xs); color: var(--gray-400); }

/* ─── CONFETTI ─────────────────────────────────────── */
.confetti-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.confetti-overlay.active {
    display: block;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ─── TOAST ────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-3) var(--space-6);
    background: var(--gray-800);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.3s ease;
    max-width: 90vw;
}

.toast.error { background: var(--accent-red); }
.toast.success { background: var(--forest-500); }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (min-width: 768px) {
    .landing-title { font-size: 3.5rem; }
    
    .team-select {
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
    }
    
    .lobby-teams {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .arena-rope-container {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .question-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .host-options {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        max-width: 700px;
    }
}

@media (min-width: 1024px) {
    .landing-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .screen-body {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ─── ANIMATIONS ───────────────────────────────────── */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse { animation: pulse 2s ease-in-out infinite; }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake { animation: shake 0.5s ease; }

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

.slide-up { animation: slideUp 0.3s ease; }

/* ─── DEBUG / LOADING ─────────────────────────────── */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,43,31,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--forest-600);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
