/* ============================================
   BOSSFIGHTGARDEN.COM - Battle Arena Social Casino
   
   CSS ARCHITECTURE: ITCSS (Inverted Triangle CSS)
   - Settings → Tools → Generic → Elements → Objects → Components → Trumps
   - Specificity increases from top to bottom
   
   THEME: Battle Arena / Epic Warriors
   PALETTE: Battle Arena Colors
   - battle-crimson: #dc143c (blood of battle)
   - victory-gold: #ffd700 (golden victory)
   - forest-green: #228b22 (garden theme)
   - shadow-purple: #4b0082 (dark magic)
   - steel-gray: #708090 (armor)
   - flame-orange: #ff4500 (fire)
   
   EFFECT: Brutalism (sharp edges, bold borders, raw aesthetic)
   TYPOGRAPHY: Bold Display (Oswald + Source Sans Pro)
   BUTTONS: Brutalist (thick borders, sharp corners, bold text)
   ============================================ */

/* ==================== 1. SETTINGS ==================== */
:root {
    /* Battle Arena Palette */
    --battle-crimson: #dc143c;
    --victory-gold: #ffd700;
    --forest-green: #228b22;
    --shadow-purple: #4b0082;
    --steel-gray: #708090;
    --flame-orange: #ff4500;
    
    /* Supporting Colors */
    --bone-white: #f5f5dc;
    --midnight-black: #0d0d0d;
    --charcoal: #1a1a1a;
    --ash-gray: #2d2d2d;
    --blood-dark: #8b0000;
    
    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
    
    /* Layout */
    --header-height: 75px;
    --max-width: 1200px;
    --border-brutal: 4px solid var(--victory-gold);
    --border-thin: 2px solid var(--steel-gray);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }
}

/* ==================== 2. TOOLS (Mixins placeholder - CSS only) ==================== */
/* No preprocessor - using CSS custom properties instead */

/* ==================== 3. GENERIC ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--midnight-black);
    color: var(--bone-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==================== 4. ELEMENTS ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

a {
    color: var(--victory-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--flame-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-display);
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ==================== 5. OBJECTS ==================== */

/* Container */
.o-container {
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid System */
.o-grid {
    display: grid;
    gap: 2rem;
}

.o-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.o-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.o-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .o-grid--3,
    .o-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .o-grid--2,
    .o-grid--3,
    .o-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* Flex Objects */
.o-flex {
    display: flex;
    align-items: center;
}

.o-flex--center {
    justify-content: center;
}

.o-flex--between {
    justify-content: space-between;
}

.o-flex--wrap {
    flex-wrap: wrap;
}

/* Media Object */
.o-media {
    display: flex;
    gap: 1.5rem;
}

.o-media__figure {
    flex-shrink: 0;
}

.o-media__body {
    flex: 1;
}

/* ==================== 6. COMPONENTS ==================== */

/* === Header Component === */
.c-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--midnight-black);
    border-bottom: var(--border-brutal);
    z-index: 1000;
}

.c-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-header__logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--victory-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.c-header__logo-icon {
    font-size: 1.8rem;
}

/* === Navigation Component === */
.c-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.c-nav__list {
    display: flex;
    align-items: center;
    gap: 0;
}

.c-nav__item {
    border-left: var(--border-thin);
}

.c-nav__item:last-child {
    border-right: var(--border-thin);
}

.c-nav__link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--bone-white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-fast);
    background: transparent;
}

.c-nav__link:hover {
    background: var(--victory-gold);
    color: var(--midnight-black);
}

.c-nav__link--cta {
    background: var(--battle-crimson);
    color: var(--bone-white);
}

.c-nav__link--cta:hover {
    background: var(--blood-dark);
    color: var(--bone-white);
}

/* Mobile Menu Toggle */
.c-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: var(--border-thin);
}

.c-nav__toggle-bar {
    width: 28px;
    height: 3px;
    background: var(--victory-gold);
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .c-nav__list {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--midnight-black);
        border-bottom: var(--border-brutal);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        gap: 0;
    }
    
    .c-nav__list.is-active {
        transform: translateY(0);
    }
    
    .c-nav__item {
        width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: var(--border-thin);
    }
    
    .c-nav__item:last-child {
        border-right: none;
    }
    
    .c-nav__link {
        text-align: center;
        padding: 1.2rem;
    }
    
    .c-nav__toggle {
        display: flex;
    }
    
    .c-nav__toggle.is-active .c-nav__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .c-nav__toggle.is-active .c-nav__toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .c-nav__toggle.is-active .c-nav__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* === Hero Component === */
.c-hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        linear-gradient(225deg, rgba(75, 0, 130, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255, 215, 0, 0.03) 50px,
            rgba(255, 215, 0, 0.03) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 215, 0, 0.03) 50px,
            rgba(255, 215, 0, 0.03) 51px
        ),
        var(--midnight-black);
}

.c-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--charcoal);
    border: var(--border-brutal);
    position: relative;
}

.c-hero__content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--battle-crimson);
    z-index: -1;
}

.c-hero__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--battle-crimson);
    color: var(--bone-white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.c-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--bone-white);
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0 var(--battle-crimson);
}

.c-hero__title-highlight {
    color: var(--victory-gold);
    display: block;
}

.c-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(245, 245, 220, 0.85);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.c-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .c-hero {
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .c-hero__content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .c-hero__content::before {
        top: -5px;
        left: -5px;
        right: 5px;
        bottom: 5px;
    }
}

/* === Button Component === */
.c-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    border: 4px solid;
    transition: var(--transition-fast);
    position: relative;
}

.c-btn--primary {
    background: var(--victory-gold);
    color: var(--midnight-black);
    border-color: var(--victory-gold);
}

.c-btn--primary:hover {
    background: var(--midnight-black);
    color: var(--victory-gold);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 var(--victory-gold);
}

.c-btn--secondary {
    background: transparent;
    color: var(--bone-white);
    border-color: var(--bone-white);
}

.c-btn--secondary:hover {
    background: var(--bone-white);
    color: var(--midnight-black);
}

.c-btn--danger {
    background: var(--battle-crimson);
    color: var(--bone-white);
    border-color: var(--battle-crimson);
}

.c-btn--danger:hover {
    background: var(--blood-dark);
    border-color: var(--blood-dark);
}

/* === Section Component === */
.c-section {
    padding: 5rem 0;
}

.c-section--dark {
    background: var(--charcoal);
}

.c-section--pattern {
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 215, 0, 0.02) 20px,
            rgba(255, 215, 0, 0.02) 21px
        ),
        var(--midnight-black);
}

.c-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.c-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bone-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.c-section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--victory-gold);
}

.c-section__title-accent {
    color: var(--victory-gold);
}

.c-section__subtitle {
    font-size: 1.15rem;
    color: rgba(245, 245, 220, 0.75);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* === Card Component === */
.c-card {
    background: var(--charcoal);
    border: var(--border-brutal);
    padding: 0;
    transition: var(--transition-normal);
    position: relative;
}

.c-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--battle-crimson);
    opacity: 0;
    transform: translate(-6px, -6px);
    transition: var(--transition-fast);
    z-index: -1;
}

.c-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px 0 var(--victory-gold);
}

.c-card:hover::before {
    opacity: 1;
}

.c-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: var(--border-brutal);
}

.c-card__body {
    padding: 1.5rem;
}

.c-card__title {
    font-size: 1.4rem;
    color: var(--victory-gold);
    margin-bottom: 0.8rem;
}

.c-card__text {
    color: rgba(245, 245, 220, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.c-card__action {
    display: block;
    width: 100%;
}

/* === Benefit Card Component === */
.c-benefit {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--charcoal);
    border: var(--border-brutal);
    position: relative;
}

.c-benefit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--battle-crimson), var(--victory-gold), var(--forest-green));
}

.c-benefit__icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.c-benefit__title {
    font-size: 1.4rem;
    color: var(--victory-gold);
    margin-bottom: 1rem;
}

.c-benefit__text {
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.8;
}

/* === Testimonial Component === */
.c-testimonial {
    padding: 2rem;
    background: var(--ash-gray);
    border-left: 6px solid var(--victory-gold);
    position: relative;
}

.c-testimonial::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--victory-gold);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.c-testimonial__text {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(245, 245, 220, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.c-testimonial__author {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--victory-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-testimonial__location {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.6);
    margin-top: 0.3rem;
}

/* === Leaderboard Component === */
.c-leaderboard {
    max-width: 800px;
    margin: 0 auto;
}

.c-leaderboard__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--charcoal);
    border: var(--border-thin);
    margin-bottom: 1rem;
}

.c-leaderboard__item:first-child {
    border-color: var(--victory-gold);
    border-width: 4px;
}

.c-leaderboard__rank {
    font-family: var(--font-display);
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.c-leaderboard__info {
    flex: 1;
}

.c-leaderboard__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--bone-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.c-leaderboard__score {
    color: var(--forest-green);
    font-weight: 600;
    font-size: 1.1rem;
}

/* === FAQ Component === */
.c-faq {
    max-width: 900px;
    margin: 0 auto;
}

.c-faq__item {
    border: var(--border-thin);
    margin-bottom: 1rem;
    background: var(--charcoal);
}

.c-faq__question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--bone-white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.c-faq__question:hover {
    background: var(--ash-gray);
}

.c-faq__icon {
    font-size: 1.5rem;
    color: var(--victory-gold);
    transition: transform 0.3s ease;
}

.c-faq__question.is-active .c-faq__icon {
    transform: rotate(45deg);
}

.c-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 0 solid var(--steel-gray);
}

.c-faq__answer.is-active {
    max-height: 500px;
    border-top-width: 1px;
}

.c-faq__answer-content {
    padding: 1.5rem;
    color: rgba(245, 245, 220, 0.85);
    line-height: 1.8;
}

/* === Games Grid Component === */
.c-games-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.c-games-grid .c-card {
    flex: 0 0 auto;
    width: clamp(280px, 30%, 350px);
}

@media (max-width: 768px) {
    .c-games-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .c-games-grid .c-card {
        width: 100%;
        max-width: 400px;
    }
}

/* === Disclaimer Component === */
.c-disclaimer {
    background: var(--blood-dark);
    padding: 3rem 0;
    border-top: 6px solid var(--victory-gold);
}

.c-disclaimer__content {
    text-align: center;
}

.c-disclaimer__title {
    font-size: 1.6rem;
    color: var(--victory-gold);
    margin-bottom: 1.5rem;
}

.c-disclaimer__text {
    color: rgba(245, 245, 220, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.c-disclaimer__badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.c-disclaimer__badge {
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid var(--victory-gold);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bone-white);
}

/* === Footer Component === */
.c-footer {
    background: var(--midnight-black);
    padding: 3rem 0 1.5rem;
    border-top: var(--border-brutal);
}

.c-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.c-footer__title {
    font-size: 1.2rem;
    color: var(--victory-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.c-footer__text {
    color: rgba(245, 245, 220, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.c-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.c-footer__link {
    color: rgba(245, 245, 220, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.c-footer__link:hover {
    color: var(--victory-gold);
    padding-left: 8px;
}

.c-footer__compliance {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.c-footer__compliance-logo {
    height: 40px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border: 2px solid var(--victory-gold);
    transition: var(--transition-fast);
}

.c-footer__compliance-logo:hover {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.c-footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: var(--border-thin);
    color: rgba(245, 245, 220, 0.6);
    font-size: 0.9rem;
}

.c-footer__badge {
    margin-top: 1rem;
    color: var(--forest-green);
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === Modal Component === */
.c-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.c-modal__content {
    background: var(--charcoal);
    border: var(--border-brutal);
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.c-modal__content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid var(--battle-crimson);
    z-index: -1;
}

.c-modal__title {
    font-size: 1.8rem;
    color: var(--victory-gold);
    margin-bottom: 1.5rem;
}

.c-modal__text {
    color: rgba(245, 245, 220, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.c-modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.c-modal__warning {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.7);
}

/* === Cookie Banner Component === */
.c-cookie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--charcoal);
    border: var(--border-brutal);
    padding: 1.5rem;
    z-index: 9999;
}

.c-cookie__text {
    color: rgba(245, 245, 220, 0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.c-cookie__link {
    color: var(--victory-gold);
}

@media (max-width: 768px) {
    .c-cookie {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
}

/* === Form Components === */
.c-form__group {
    margin-bottom: 1.5rem;
}

.c-form__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--victory-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.c-form__input,
.c-form__textarea {
    width: 100%;
    padding: 1rem;
    background: var(--ash-gray);
    border: var(--border-thin);
    color: var(--bone-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.c-form__input:focus,
.c-form__textarea:focus {
    outline: none;
    border-color: var(--victory-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.c-form__textarea {
    min-height: 150px;
    resize: vertical;
}

/* ==================== 7. TRUMPS (Utilities) ==================== */
.u-text-center {
    text-align: center;
}

.u-text-left {
    text-align: left;
}

.u-mb-1 { margin-bottom: 1rem; }
.u-mb-2 { margin-bottom: 2rem; }
.u-mb-3 { margin-bottom: 3rem; }

.u-mt-1 { margin-top: 1rem; }
.u-mt-2 { margin-top: 2rem; }
.u-mt-3 { margin-top: 3rem; }

.u-hidden {
    display: none !important;
}

.u-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== ANIMATIONS ==================== */
@keyframes brutalist-shake {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-2px, -2px); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.a-fade-in {
    animation: fade-in-up 0.6s ease-out;
}

.a-shake:hover {
    animation: brutalist-shake 0.3s ease;
}

