* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    animation: backgroundPulse 10s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e); }
    100% { background: linear-gradient(135deg, #16213e, #0f0f23, #1a1a2e); }
}

#gameContainer {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none !important;
}

/* Loading Screen */
#loadingScreen {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3, #54a0ff);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#loadingScreen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: sparkle 4s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes sparkle {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.loading-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.loading-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.4);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.4);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 30px rgba(255,255,255,1), 0 0 60px rgba(255,255,255,0.8);
        transform: scale(1.05);
    }
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(255,255,255,0.2);
    border-top: 8px solid #fff;
    border-right: 8px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px rgba(255,255,255,0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255,255,255,0.5); }
    50% { box-shadow: 0 0 50px rgba(255,255,255,0.8), 0 0 80px rgba(255,107,107,0.4); }
}

/* Main Game UI */
#gameUI {
    background: linear-gradient(to bottom, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 100% 200%;
    animation: backgroundFloat 15s ease-in-out infinite;
    position: relative;
}

#gameUI::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

@keyframes backgroundFloat {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

.top-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(30,30,60,0.9));
    color: white;
    height: 80px;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.resources {
    display: flex;
    gap: 20px;
}

.resource {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.resource:hover::before {
    transform: translateX(100%);
}

.resource:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.resource img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
    animation: resourceGlow 3s ease-in-out infinite alternate;
}

@keyframes resourceGlow {
    0% { filter: drop-shadow(0 0 8px rgba(255,255,255,0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(255,255,255,0.8)); }
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.5); }
    50% { box-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 50px rgba(255,255,255,0.3); }
}

#gameArea {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#gameCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.building-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 3px;
    padding: 15px;
    pointer-events: none;
}

.grid-cell {
    border: 2px dashed rgba(255,255,255,0.4);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.grid-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.grid-cell:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    transform: scale(1.08) translateY(-4px);
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}

.grid-cell:hover::before {
    opacity: 1;
}

.grid-cell.occupied {
    background: linear-gradient(135deg, rgba(0,255,100,0.3), rgba(0,200,80,0.2));
    border-color: #00ff64;
    box-shadow: 0 0 20px rgba(0,255,100,0.4), inset 0 0 20px rgba(0,255,100,0.1);
    animation: occupiedGlow 2s ease-in-out infinite alternate;
}

@keyframes occupiedGlow {
    0% { box-shadow: 0 0 20px rgba(0,255,100,0.4), inset 0 0 20px rgba(0,255,100,0.1); }
    100% { box-shadow: 0 0 30px rgba(0,255,100,0.6), inset 0 0 30px rgba(0,255,100,0.2); }
}

.grid-cell.selected {
    background: linear-gradient(135deg, rgba(255,215,0,0.4), rgba(255,215,0,0.2));
    border-color: gold;
    box-shadow: 0 0 25px rgba(255,215,0,0.6), inset 0 0 25px rgba(255,215,0,0.2);
    animation: selectedPulse 1s ease-in-out infinite;
}

@keyframes selectedPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.building-sprite {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

.grid-cell.occupied:hover .building-sprite {
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4)) brightness(1.1);
}

.bottom-hud {
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,40,0.95));
    color: white;
    height: 220px;
    display: flex;
    flex-direction: column;
    border-top: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.action-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.tab {
    flex: 1;
    padding: 18px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab.active {
    color: white;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.tab.active::before {
    transform: scaleX(1);
}

.tab:hover {
    color: white;
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.action-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.building-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.building-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.building-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.building-item:hover::before {
    left: 100%;
}

.building-item:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.building-item.selected {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.4), rgba(52, 152, 219, 0.2));
    border: 2px solid #3498db;
    box-shadow: 0 0 25px rgba(52, 152, 219, 0.5), inset 0 0 25px rgba(52, 152, 219, 0.1);
    animation: buildingSelected 1s ease-in-out infinite alternate;
}

@keyframes buildingSelected {
    0% { box-shadow: 0 0 25px rgba(52, 152, 219, 0.5), inset 0 0 25px rgba(52, 152, 219, 0.1); }
    100% { box-shadow: 0 0 35px rgba(52, 152, 219, 0.7), inset 0 0 35px rgba(52, 152, 219, 0.2); }
}

.building-item img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

.building-item:hover img {
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4)) brightness(1.1);
}

.building-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cost {
    font-size: 13px;
    color: #f39c12;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.army-info, .battle-info, .players-list {
    padding: 10px;
}

.unit-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.unit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.unit-item img {
    width: 30px;
    height: 30px;
}

.train-btn, .battle-btn {
    padding: 8px 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.train-btn:hover, .battle-btn:hover {
    background: #2980b9;
}

/* Battle Screen */
#battleScreen {
    background: linear-gradient(135deg, #8B0000, #DC143C, #FF1493, #FF6347);
    background-size: 400% 400%;
    animation: battleBackground 4s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
}

#battleScreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,0,0,0.2) 0%, transparent 70%);
    animation: battlePulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes battleBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes battlePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.battle-arena {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.battle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(40,0,0,0.8));
    backdrop-filter: blur(15px);
    border-bottom: 3px solid rgba(255,0,0,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.player-side, .enemy-side {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: battleIntro 1s ease-out;
}

@keyframes battleIntro {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.battle-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 25px rgba(255,255,255,0.5);
    animation: avatarBattlePulse 2s ease-in-out infinite;
}

@keyframes avatarBattlePulse {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(255,255,255,0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 35px rgba(255,255,255,0.8), 0 0 50px rgba(255,0,0,0.3);
        transform: scale(1.05);
    }
}

.army-strength h4 {
    margin-bottom: 15px;
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.health-bar {
    width: 250px;
    height: 25px;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.health-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #c0392b, #ff6b6b);
    width: 100%;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 13px;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
    animation: healthPulse 2s ease-in-out infinite;
}

@keyframes healthPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(231, 76, 60, 0.5); }
    50% { box-shadow: 0 0 25px rgba(231, 76, 60, 0.8), inset 0 0 15px rgba(255,255,255,0.2); }
}

.vs-text {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,0,0,0.6);
    animation: vsGlow 2s ease-in-out infinite alternate;
}

@keyframes vsGlow {
    0% { 
        text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,0,0,0.6);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 30px rgba(255,255,255,1), 0 0 60px rgba(255,0,0,0.8);
        transform: scale(1.1);
    }
}

.battle-field {
    flex: 1;
    position: relative;
}

#battleCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.battle-controls {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(40,0,0,0.8));
    backdrop-filter: blur(15px);
    border-top: 3px solid rgba(255,0,0,0.3);
}

.battle-action {
    padding: 18px 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.battle-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.battle-action:hover::before {
    left: 100%;
}

.battle-action:nth-child(1) {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.battle-action:nth-child(1):hover {
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.battle-action:nth-child(2) {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.battle-action:nth-child(2):hover {
    background: linear-gradient(135deg, #5dade2, #3498db);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

.battle-action:nth-child(3) {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.4);
}

.battle-action:nth-child(3):hover {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.6);
}

.battle-action:hover {
    transform: scale(1.08) translateY(-4px);
}

.battle-action:active {
    transform: scale(0.95);
}

/* Notifications */
.notifications {
    position: fixed;
    top: 90px;
    right: 25px;
    z-index: 1000;
    max-width: 350px;
}

.notification {
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,40,0.95));
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    transform: translateX(100%);
    animation: slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    animation: notificationShimmer 2s ease-in-out infinite;
}

@keyframes notificationShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.notification.success {
    border-left: 4px solid #27ae60;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 20px rgba(39, 174, 96, 0.3);
}

.notification.error {
    border-left: 4px solid #e74c3c;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 20px rgba(231, 76, 60, 0.3);
}

.notification.info {
    border-left: 4px solid #3498db;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 20px rgba(52, 152, 219, 0.3);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-hud {
        padding: 8px 10px;
        height: 60px;
    }
    
    .resources {
        gap: 8px;
    }
    
    .resource {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .resource img {
        width: 20px;
        height: 20px;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
    }
    
    .bottom-hud {
        height: 180px;
    }
    
    .building-options {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .building-item {
        padding: 8px;
        font-size: 12px;
    }
    
    .building-item img {
        width: 30px;
        height: 30px;
    }
    
    .battle-header {
        padding: 15px 10px;
    }
    
    .battle-avatar {
        width: 50px;
        height: 50px;
    }
    
    .health-bar {
        width: 120px;
        height: 15px;
    }
    
    .vs-text {
        font-size: 1.5rem;
    }
    
    .battle-action {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .building-options {
        grid-template-columns: 1fr;
    }
    
    .battle-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .battle-action {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}