/* Style Guide & Theme Variables */
:root {
    /* Colors */
    --bg-dark: #0a0a0c;
    --bg-card: rgba(20, 21, 25, 0.7);
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    
    /* Neon Accents */
    --accent-green: #05ff1e;
    --accent-green-glow: rgba(5, 255, 30, 0.25);
    --accent-orange: #ff6b00;
    --accent-orange-glow: rgba(255, 107, 0, 0.25);
    --accent-red: #ff003c;
    --accent-red-glow: rgba(255, 0, 60, 0.35);
    --accent-military: #709a63;
    
    /* Dynamic Theme Variable (will be modified by JS during rage events) */
    --theme-accent: var(--accent-green);
    --theme-accent-glow: var(--accent-green-glow);
    
    /* Layout */
    --max-width: 1100px;
    --border-radius: 12px;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Background Grids & Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Scanlines and CRT Overlay */
.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 9999;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.12) 50%,
        rgba(0, 0, 0, 0.12)
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9998;
}

/* HUD Header Styling */
.hud-header {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-card-border);
    z-index: 10;
    position: relative;
}

.hud-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.hud-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--theme-accent);
    box-shadow: 0 0 10px var(--theme-accent);
}

.pulse-indicator.live {
    animation: beacon 1.5s infinite;
}

@keyframes beacon {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 var(--theme-accent-glow); }
    70% { transform: scale(1.5); opacity: 0.5; box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.status-text {
    font-weight: 500;
    color: var(--text-primary);
}

.hud-btn {
    background: transparent;
    border: 1px solid var(--theme-accent);
    color: var(--theme-accent);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hud-btn:hover {
    background: var(--theme-accent-glow);
    box-shadow: 0 0 12px var(--theme-accent-glow);
}

/* Layout & Panels */
.content-container {
    flex: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 5;
    position: relative;
}

.card-panel {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.card-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--theme-accent);
    transition: background-color 0.4s ease;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero-avatar-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.hero-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--theme-accent);
    position: relative;
    z-index: 2;
    transition: border-color 0.4s ease, transform 0.5s ease;
}

.hero-avatar-wrapper:hover .hero-avatar {
    transform: rotate(5deg) scale(1.05);
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--theme-accent-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    transition: background 0.4s ease;
}

.avatar-hud-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.15);
    z-index: 1;
    animation: rotate 20s linear infinite;
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hud-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.badge-military {
    background: rgba(112, 154, 99, 0.2);
    border: 1px solid var(--accent-military);
    color: #b0d8a5;
}

.badge-role {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
}

.highlight-green {
    color: var(--theme-accent);
    text-shadow: 0 0 15px var(--theme-accent-glow);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.hero-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Simulated Stream Preview */
.stream-viewport {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.simulated-gameplay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1a1e24 0%, #0d0f12 100%);
    overflow: hidden;
}

.radar-scan {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(5,255,30,0.1) 0deg, transparent 90deg);
    animation: rotate 6s linear infinite;
    pointer-events: none;
}

.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.hud-crosshair::before, .hud-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.25);
}

.hud-crosshair::before {
    top: 50%;
    left: -10px;
    width: 60px;
    height: 1px;
}

.hud-crosshair::after {
    top: -10px;
    left: 50%;
    width: 1px;
    height: 60px;
}

.viewport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: opacity 0.3s ease;
    cursor: pointer;
    padding: 20px;
    text-align: center;
}

.viewport-overlay:hover {
    background: rgba(0, 0, 0, 0.45);
}

.viewport-overlay:focus-visible {
    outline: 2px solid var(--theme-accent);
    outline-offset: -2px;
}

.play-icon {
    font-size: 3rem;
    color: var(--theme-accent);
    text-shadow: 0 0 15px var(--theme-accent-glow);
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.viewport-overlay:hover .play-icon {
    transform: scale(1.15);
}

.viewport-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #e0e0e8;
}

/* Chat Feed Simulator */
.chat-simulator {
    margin-top: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
}

.chat-header {
    background: rgba(0,0,0,0.3);
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

.chat-messages {
    height: 110px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
}

.chat-msg {
    animation: slideUpChat 0.3s ease forwards;
    line-height: 1.4;
}

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

.chat-username {
    font-weight: 700;
    margin-right: 6px;
}

.chat-system {
    color: var(--accent-orange);
    font-style: italic;
}

/* Rage Meter Card */
.rage-status {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--theme-accent);
    text-shadow: 0 0 10px var(--theme-accent-glow);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.rage-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.rage-bar-container {
    flex: 1;
    height: 32px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.rage-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-orange) 60%, var(--accent-red) 100%);
    box-shadow: 0 0 15px var(--theme-accent-glow);
    transition: width 0.3s cubic-bezier(0.1, 0.8, 0.3, 1), background-color 0.4s ease;
}

.rage-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 10% 100%;
}

.rage-percentage {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 65px;
    text-align: right;
}

.rage-quote-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 6px;
    min-height: 80px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hud-quote-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.rage-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #f0f0f5;
    line-height: 1.4;
}

.rage-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Button & Card Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--theme-accent);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--theme-accent-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-rage {
    flex: 1;
    background: var(--accent-red);
    color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.btn-rage:hover {
    background: #ff1a4f;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
    transform: scale(1.02);
}

.btn-calm {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.btn-calm:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* RegimentGG Hub */
.regiment-card::before {
    background: var(--accent-military);
}

.regiment-layout {
    display: flex;
    gap: 32px;
    align-items: center;
}

.regiment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.regiment-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}

.highlight-military {
    color: var(--accent-military);
    text-shadow: 0 0 10px rgba(112, 154, 99, 0.2);
}

.regiment-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.regiment-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-military-action {
    background: var(--accent-military);
    border: none;
    color: #fff;
}

.btn-military-action:hover {
    box-shadow: 0 0 15px rgba(112, 154, 99, 0.35);
    transform: translateY(-2px);
}

.btn-salute {
    background: transparent;
    border: 1px solid var(--accent-military);
    color: var(--accent-military);
}

.btn-salute:hover {
    background: rgba(112, 154, 99, 0.1);
    transform: translateY(-2px);
}

/* Dogtag Graphic */
.dogtag-card {
    width: 140px;
    height: 220px;
    background: linear-gradient(135deg, #2e3138 0%, #17181c 100%);
    border: 2px solid #4a4f5a;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 16px;
    position: relative;
    transform: rotate(10deg);
    transition: transform 0.3s ease;
}

.dogtag-card:hover {
    transform: rotate(5deg) scale(1.05);
}

.dogtag-hole {
    width: 14px;
    height: 14px;
    background: var(--bg-dark);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 2px solid #4a4f5a;
}

.dogtag-text {
    font-family: monospace;
    font-size: 0.65rem;
    line-height: 1.7;
    color: #8c93a3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Social Grid Links */
.social-grid-section {
    margin-top: 16px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.social-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--border-radius);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
}

.social-icon {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.svg-icon {
    width: 36px;
    height: 36px;
}

.social-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.social-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
}

.card-link-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--card-hover-border);
    margin-top: 8px;
}

/* Card Specific Hover Accent Colors */
.card-kick { --card-hover-border: var(--accent-green); }
.card-twitter { --card-hover-border: #1da1f2; }
.card-tiktok { --card-hover-border: #ff0050; }
.card-discord { --card-hover-border: #5865f2; }

/* Custom Screen Shake Effect for RAGE */
.shake-screen {
    animation: screenShake 0.15s infinite alternate;
}

@keyframes screenShake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(0px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(2px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(2px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* Footer Styling */
.hud-footer {
    width: 100%;
    margin-top: 60px;
    border-top: 1px solid var(--bg-card-border);
    padding: 30px 20px;
    background: rgba(5, 5, 7, 0.9);
    z-index: 10;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-align: center;
}

.footer-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    color: #fff;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent-red);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 var(--accent-green), 0 1px var(--accent-red);
    clip: rect(85px, 450px, 140px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(15px, 9999px, 66px, 0); }
    10% { clip: rect(85px, 9999px, 5px, 0); }
    20% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(12px, 9999px, 89px, 0); }
    40% { clip: rect(76px, 9999px, 23px, 0); }
    50% { clip: rect(54px, 9999px, 78px, 0); }
    60% { clip: rect(98px, 9999px, 12px, 0); }
    70% { clip: rect(23px, 9999px, 45px, 0); }
    80% { clip: rect(67px, 9999px, 87px, 0); }
    90% { clip: rect(8px, 9999px, 54px, 0); }
    100% { clip: rect(45px, 9999px, 23px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 12px, 0); }
    10% { clip: rect(43px, 9999px, 87px, 0); }
    20% { clip: rect(12px, 9999px, 43px, 0); }
    30% { clip: rect(87px, 9999px, 76px, 0); }
    40% { clip: rect(34px, 9999px, 54px, 0); }
    50% { clip: rect(90px, 9999px, 23px, 0); }
    60% { clip: rect(12px, 9999px, 78px, 0); }
    70% { clip: rect(56px, 9999px, 12px, 0); }
    80% { clip: rect(78px, 9999px, 98px, 0); }
    90% { clip: rect(23px, 9999px, 43px, 0); }
    100% { clip: rect(54px, 9999px, 65px, 0); }
}

/* Scroll Animations via Native View Timelines */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .scroll-animate {
            animation: fadeSlideIn auto linear forwards;
            animation-timeline: view();
            animation-range: entry 10% cover 30%;
        }
    }
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-avatar-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .avatar-glow {
        width: 140px;
        height: 140px;
    }
    
    .avatar-hud-ring {
        width: 150px;
        height: 150px;
    }
    
    .badge-group {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .regiment-layout {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .regiment-actions {
        justify-content: center;
    }
    
    .dogtag-card {
        transform: rotate(0deg);
    }
}
