:root {
    --color-discord: #5865F2;
    --color-discord-hover: #7289DA;
    --color-bg-light: #E6F4FF;
    --color-bg-dark: #0A3D62;
    --color-navbar: #60A3D9;
    --color-footer: #1E4976;
    --color-btn-primary: #4CD137;
    --color-btn-hover: #44BD32;
    --color-text-primary: #ffffff;
    --color-text-secondary: #fdfeff;
    --color-accent: #A3CB38;
    
    --color-cartoon-primary: #4CD137;
    --color-cartoon-hover: #44BD32;
    --color-cartoon-shadow: #2F9022;
    
    --bs-primary: var(--color-cartoon-primary);
    --bs-primary-rgb: 76, 209, 55;
    --bs-body-color: var(--color-text-primary);
    --bs-body-bg: var(--color-bg-light);
    --bs-link-color: var(--color-navbar);
    --bs-link-hover-color: var(--color-btn-hover);
}

[data-theme=dark] {
    --bs-secondary-bg: #c8c8c8;
    --bs-secondary-bg-rgb: 21, 28, 40;
    --bs-body-bg: var(--color-bg-dark);
    --bs-body-color: var(--color-text-secondary);
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #60A3D9;
    color: var(--color-text-primary);
    background-position: left top;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 50px;
    margin-top: 0;
    min-height: 100vh;
    padding-top: 0;
    position: relative;
}

body::after {
    display: none;
}

.home-content body::after {
    display: none;
}

.home-header {
    position: relative;
    height: calc(100vh - 140px);
    min-height: 450px;
    margin-top: 0;
    padding-top: 70px;
    margin-bottom: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-header-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: -10px;
    height: 150px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(96, 163, 217, 0.3) 10%,
        rgba(96, 163, 217, 0.5) 25%, 
        rgba(96, 163, 217, 0.7) 40%,
        rgba(96, 163, 217, 0.85) 60%, 
        rgba(96, 163, 217, 0.95) 80%,
        #60A3D9 100%);
    z-index: 2;
}

.header-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
    drop-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    max-height: 600px !important;
    min-height: 400px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    animation: pulse 3s ease-in-out infinite;
    display: block !important;
    margin: 0 auto !important;
}

.header-logo.img-fluid {
    max-width: none !important;
    height: auto !important;
}

.header-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
    animation-play-state: paused;
}

.header-action-btn {
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.2s ease !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.95rem !important;
    position: relative !important;
    min-width: 160px !important;
    margin: 4px !important;
    overflow: hidden !important;
    transform: translateY(0) !important;
}

.header-action-btn.enhanced-btn {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25) !important;
}

.header-action-btn.enhanced-btn:hover {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25) !important;
    transform: translateY(2px) !important;
}

.header-action-btn::before {
    display: none !important;
}

.header-action-btn:hover {
    transform: translateY(2px) !important;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2) !important;
}

.header-action-btn:active {
    transform: translateY(4px) !important;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2) !important;
    transition: all 0.1s !important;
}

.header-action-btn.btn-primary {
    background-color: var(--color-cartoon-primary) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 0 var(--color-cartoon-shadow) !important;
    transform: translateY(0) !important;
}

.header-action-btn.btn-primary.enhanced-btn {
    background-color: var(--color-cartoon-primary) !important;
}

.header-action-btn.btn-primary:hover {
    background-color: var(--color-cartoon-hover) !important;
    box-shadow: 0 2px 0 var(--color-cartoon-shadow) !important;
    transform: translateY(2px) !important;
    color: white !important;
}

.header-action-btn.btn-primary:active {
    transform: translateY(4px) !important;
    box-shadow: 0 0 0 var(--color-cartoon-shadow) !important;
    transition: all 0.1s !important;
    color: white !important;
}

.header-action-btn.btn-secondary {
    background-color: var(--color-discord) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    box-shadow: 0 4px 0 rgba(60, 71, 203, 0.8) !important;
    transform: translateY(0) !important;
}

.header-action-btn.btn-secondary:hover {
    background-color: var(--color-discord-hover) !important;
    box-shadow: 0 2px 0 rgba(60, 71, 203, 0.8) !important;
    transform: translateY(2px) !important;
    color: white !important;
}

.header-action-btn.btn-secondary:active {
    transform: translateY(4px) !important;
    box-shadow: 0 0 0 rgba(60, 71, 203, 0.8) !important;
    transition: all 0.1s !important;
    color: white !important;
}

.header-action-btn.btn-success {
    background-color: #22C55E !important;
    border-color: #22C55E !important;
    color: white !important;
}

@keyframes successPulse {
    0% {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes cartoonBounce {
    0% { transform: scale(1) translateY(0); }
    20% { transform: scale(1.1) translateY(-8px); }
    40% { transform: scale(0.95) translateY(-4px); }
    60% { transform: scale(1.05) translateY(-6px); }
    80% { transform: scale(0.98) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
}

@keyframes cloudFloat {
    0%, 100% { opacity: 0; }
}

body[data-theme=dark] {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #162945 100%);
    color: var(--color-text-secondary);
}

.content {
    margin-top: 2rem;
    margin-bottom: 5rem;
    position: relative;
}

.content:not(.home-content) {
    padding-top: 120px;
}

a {
    text-decoration: none;
    color: var(--color-navbar);
}

.navbar {
    background-color: var(--color-navbar);
    padding: 0.5rem 0;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    border-radius: 8px;
    width: 85%;
    max-width: 1100px;
    box-shadow: 
        0 5px 0 rgba(0, 0, 0, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

.navbar-brand img {
    max-height: 75px;
    max-width: 150px;
}

.navbar .nav-item {
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

.navbar .nav-item .nav-link {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.3rem 1rem 0.6rem 1rem !important;
    font-size: 1.1rem;
    position: relative;
    transition: none;
}

.navbar .nav-item .nav-link:hover {
    color: #FFFFFF !important;
}

.navbar .nav-item .nav-link::after {
    display: none;
}

.navbar .nav-item .nav-link.active {
    color: #FFFFFF;
    font-weight: 700;
}

.navbar .nav-item .dropdown-toggle::after {
    border-top: 0.3em solid #FFFFFF;
}

.navbar-socials .nav-link {
    color: var(--color-accent);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.navbar-toggler:hover {
    border-color: rgba(247, 202, 24, 0.5);
    background-color: rgba(247, 202, 24, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(247, 202, 24, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.user-nav-link {
    display: flex;
    align-items: center;
    color: #FFFFFF !important;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem !important;
    height: 48px;
    margin-top: 3px;
}

.user-nav-link:hover,
.user-nav-link:focus,
.user-nav-link:active {
    color: #FFFFFF !important;
    text-decoration: none !important;
    background-color: transparent !important;
    transform: none !important;
    filter: none !important;
}

.user-nav-link::after {
    display: none !important;
}

.user-nav-link img {
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.default-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-navbar);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.footer {
    background-color: #1A3A5F;
    color: #e2e8f0;
    padding: 3rem 0 2rem;
    border-top: none;
    position: relative;
    box-shadow: 
        0 -5px 0 rgba(0, 0, 0, 0.1),
        0 -8px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-btn-primary), var(--color-accent), var(--color-btn-primary));
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
}

.footer h3 .title-underline {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-btn-primary);
    margin: 0.5rem auto 0;
}

.footer .about {
    text-align: center;
    padding: 0 1rem;
}

.footer .about p {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.footer .social-links .social-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background-color: var(--color-btn-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .links li {
    margin-bottom: 0.6rem;
    width: 100%;
    text-align: center;
}

.footer .links a {
    color: #cbd5e0;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s ease;
    width: 100%;
}

.footer .links a:hover {
    color: var(--color-btn-primary);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(3px);
}

.footer hr {
    display: none;
}

.footer .row:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-top: 1.5rem !important;
    margin-top: 2rem !important;
}

.footer-copyright {
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: left;
}

.footer-credits {
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: right;
}

.credit-highlight {
    color: var(--color-btn-primary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.credit-highlight:hover {
    color: var(--color-accent);
}

.footer .row:last-child .col-md-6 {
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer .row:last-child .col-md-6:first-child {
    text-align: left;
}

.footer .row:last-child .col-md-6:last-child {
    text-align: right;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--color-cartoon-primary);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 0 var(--color-cartoon-shadow), 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border-width: 2px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.btn-primary:hover {
    background-color: var(--color-cartoon-hover);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 0 var(--color-cartoon-shadow), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(2px);
}

.btn-primary:active {
    background-color: var(--color-cartoon-primary);
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--color-cartoon-shadow), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.1s;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-discord {
    background-color: var(--color-discord);
    border: 1px solid var(--color-discord);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.btn-discord::before {
    display: none;
}

.btn-discord:hover {
    background-color: var(--color-discord-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(88, 101, 242, 0.4), 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--color-discord-hover);
}

.discord-btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
}

.btn-outline-primary {
    border-color: var(--color-btn-primary);
    color: var(--color-btn-primary);
    background-color: transparent;
    box-shadow: none;
}

.btn-outline-primary:hover {
    background-color: var(--color-btn-primary);
    color: white;
}

.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 5px 0 rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(42, 90, 150, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    color: #E6F4FF;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 6px 6px 0 0;
    pointer-events: none;
    z-index: 1;
}

.card-title {
    color: #FFFFFF;
    font-weight: 600;
}

.card-subtitle {
    color: #E1F0FF;
}

.card-text {
    color: #D0E8FF;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: rgba(182, 231, 255, 0.3);
}

.progress-bar {
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-navbar) 100%);
    border-radius: 4px;
}

.badge {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.badge.bg-danger {
    background: linear-gradient(45deg, #dc3545 0%, #c82333 100%) !important;
}

.text-primary {
    color: var(--color-btn-primary) !important;
}

.text-secondary {
    color: var(--color-text-secondary) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: rgba(10, 61, 98, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1060;
    border: 1px solid rgba(96, 163, 217, 0.2);
    padding: 0.6rem 0;
    min-width: 220px;
    overflow: hidden;
}


.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    margin: 2px 8px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.95rem;
}

.dropdown-item::before {
    display: none;
}

.dropdown-item:hover {
    background-color: var(--color-btn-primary);
    color: #FFFFFF !important;
    transform: translateX(2px);
}

.dropdown-item:active {
    background-color: var(--color-btn-hover);
    color: #FFFFFF !important;
    transform: translateX(1px);
}

.dropdown-item i {
    margin-right: 0.8rem;
    width: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dropdown-item span {
    position: relative;
    z-index: 1;
}

.dropdown-divider {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0.8rem 0;
    position: relative;
}

.dropdown-divider::before {
    display: none;
}

.bg-white, .card-body, .card-header, .modal-content {
    color: #1A2E5C !important;
}

.bg-white .text-muted {
    color: #6B7280 !important;
}

.card {
    animation: fadeInUp 0.4s ease-out;
}

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

.shop-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-cartoon-primary);
    color: #FFFFFF !important;
    padding: 0 1.2rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: -5px;
    position: relative;
    box-shadow: 
        0 6px 0 var(--color-cartoon-shadow),
        0 6px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    align-self: center;
    height: 48px;
    overflow: hidden;
    transform-style: preserve-3d;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.shop-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: reflectAnimation 3s infinite;
    z-index: 1;
}

@keyframes reflectAnimation {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.shop-button:hover {
    transform: translateY(3px);
    box-shadow: 
        0 3px 0 var(--color-cartoon-shadow),
        0 3px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-cartoon-hover);
    color: #FFFFFF !important;
}

.shop-button:active {
    transform: translateY(6px);
    box-shadow: 
        0 0 0 var(--color-cartoon-shadow),
        0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.shop-button span {
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-section {
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 163, 217, 0.15);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    background-color: rgba(40, 116, 166, 0.7);
    transform: translateY(0);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-section::before {
    display: none;
}

.community-section .feature-content {
    padding-top: 0;
}

.community-section .feature-title {
    margin-bottom: 10px;
}

.community-section .feature-description {
    margin-top: -10px;
}

.feature-content {
    position: relative;
    z-index: 1;
    padding-top: 50px
}

.feature-title {
    color: var(--color-text-primary);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-icon-container {
    text-align: center;
    margin-bottom: 2rem;
    position: absolute;
    top: -100px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.feature-icon {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.server-info {
    background: linear-gradient(145deg, rgba(10, 61, 98, 0.7), rgba(26, 46, 74, 0.8));
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 163, 217, 0.2);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -20px;
    position: relative;
    z-index: 10;
    transform: translateY(0);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--color-btn-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.info-value {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-btn {
    background-color: var(--color-cartoon-primary);
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 0 var(--color-cartoon-shadow), 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.feature-btn:hover {
    background-color: var(--color-cartoon-hover);
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--color-cartoon-shadow), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--color-cartoon-shadow), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.feature-visual {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.feature-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(78, 182, 230, 0.6) 0%, 
        rgba(39, 118, 163, 0.8) 50%, 
        rgba(3, 75, 116, 0.9) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.feature-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(76, 209, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(163, 203, 56, 0.1) 0%, transparent 50%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.community-section {
    background-color: var(--color-discord);
    border-color: rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    box-shadow: 
        0 6px 0 rgba(60, 71, 203, 0.8),
        0 6px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.community-section:hover {
    transform: translateY(0);
    box-shadow: 
        0 6px 0 rgba(60, 71, 203, 0.8),
        0 6px 15px rgba(0, 0, 0, 0.2);
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

.discord-npc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.news-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title i {
    color: var(--color-btn-primary);
    font-size: 2.2rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-btn-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 1rem;
}

.server-info {
    background: linear-gradient(145deg, rgba(10, 61, 98, 0.7), rgba(26, 46, 74, 0.8));
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 163, 217, 0.2);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -20px;
    position: relative;
    z-index: 10;
    transform: translateY(0);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card {
    background-color: rgba(40, 116, 166, 0.7);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 163, 217, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transform-style: preserve-3d;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    background-color: rgba(40, 116, 166, 0.7);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.image-link:hover .news-image {
    transform: none;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 61, 98, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: none;
}

.image-link:hover .image-overlay {
    opacity: 0;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: none;
    transition: none;
}

.image-link:hover .overlay-content {
    transform: none;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-body {
    padding: 1.5rem;
}

.news-meta {
    margin-bottom: 1rem;
}

.news-date {
    color: var(--color-btn-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date i {
    color: var(--color-btn-primary);
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.title-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.title-link:hover {
    text-decoration: none;
}

.news-excerpt {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(96, 163, 217, 0.1);
}

.news-read-btn {
    background-color: var(--color-cartoon-primary);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 3px 0 var(--color-cartoon-shadow), 0 3px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.news-read-btn:hover {
    background-color: var(--color-cartoon-hover);
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--color-cartoon-shadow), 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.news-read-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 var(--color-cartoon-shadow), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.news-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(78, 182, 230, 0.2);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--color-btn-primary);
    color: white;
    border-color: var(--color-btn-primary);
    transform: translateY(-2px);
}

.empty-news {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 182, 230, 0.1);
}

.empty-icon {
    font-size: 4rem;
    color: var(--color-btn-primary);
    opacity: 0.7;
}

.dropdown-item.admin-item {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.dropdown-item.admin-item:hover {
    background: linear-gradient(145deg, #22C55E 0%, #16A34A 100%);
    color: #FFFFFF !important;
    border-color: #22C55E;
}

.dropdown-item.logout-item:hover {
    background: linear-gradient(145deg, #EF4444 0%, #DC2626 100%);
    color: #FFFFFF !important;
    border-color: #EF4444;
}

.user-dropdown-menu {
    min-width: 200px;
}

.shop-item {
    margin-right: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    margin-bottom: -70px;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.mouse-icon {
    width: 24px;
    height: 40px;
    margin-bottom: 8px;
}

.mouse-body {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    margin: 6px auto 0;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.navbar-always-visible {
    order: 3;
    margin-left: auto;
}

.navbar-toggler {
    order: 2;
}

.navbar-collapse {
    order: 1;
    flex-grow: 1;
}

.navbar .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.feature-title {
    margin-bottom: 2rem;
}

.feature-content {
    padding-top: 2rem;
}

.feature-description {
    margin-bottom: 2.5rem;
}

.community-section .feature-btn {
    background-color: #5865F2 !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 6px 0 rgba(60, 71, 203, 0.8), 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    padding: 0.8rem 2rem !important;
    border-width: 2px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(0) !important;
    letter-spacing: 1px !important;
    border-radius: 8px !important;
}

.community-section .feature-btn:hover {
    background-color: #7289DA !important;
    box-shadow: 0 3px 0 rgba(60, 71, 203, 0.8), 0 3px 8px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(3px) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.community-section .feature-btn:active {
    transform: translateY(6px) !important;
    box-shadow: 0 0 0 rgba(60, 71, 203, 0.8), 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.1s ease !important;
}

.discord-btn {
    font-size: 1.2rem !important;
    padding: 0.8rem 2rem !important;
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-navbar);
        border-radius: 0 0 8px 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        z-index: 1000;
    }
    
    .navbar-nav {
        padding: 0.5rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0.3rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 6px;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: var(--color-btn-primary);
        color: white;
    }
    
    .shop-button span {
        display: none;
    }
    
    .shop-button {
        width: 48px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .shop-button::before {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .shop-icon-mobile {
        display: inline-block !important;
    }
    
    .shop-button i {
        display: inline-block !important;
    }
    
    .navbar-always-visible {
        gap: 0;
    }
    
    .shop-item {
        margin-right: 0.2rem !important;
    }
    
    .user-dropdown {
        margin-left: 0.2rem;
    }
    
    .header-logo {
        max-height: 250px !important;
        min-height: 150px !important;
    }
    
    .join-section .cameleon-img {
        display: none;
    }
    
    .home-header {
        height: calc(100vh - 200px);
        min-height: 350px;
    }
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: white;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.shop-icon-mobile {
    display: none;
}

@media (min-width: 769px) {
    .shop-button i {
        display: none;
    }
}

.dropdown-item {
    color: #333;
    border-radius: 6px;
    margin: 2px 0;
    padding: 0.6rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--color-btn-primary);
    color: white;
    transform: none;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 3px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 3px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(0);
}

.card-body {
    padding: 1.5rem;
}

.btn-primary {
    background-color: var(--color-cartoon-primary);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 0 var(--color-cartoon-shadow), 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border-width: 2px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.btn-primary:hover {
    background-color: var(--color-cartoon-hover);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 0 var(--color-cartoon-shadow), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(2px);
}

.feature-btn {
    background-color: var(--color-cartoon-primary);
    box-shadow: 0 4px 0 var(--color-cartoon-shadow), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-btn:hover {
    background-color: var(--color-cartoon-hover);
    box-shadow: 0 2px 0 var(--color-cartoon-shadow), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.news-read-btn {
    background-color: var(--color-cartoon-primary);
    box-shadow: 0 3px 0 var(--color-cartoon-shadow), 0 3px 8px rgba(0, 0, 0, 0.1);
}

.news-read-btn:hover {
    background-color: var(--color-cartoon-hover);
    box-shadow: 0 1px 0 var(--color-cartoon-shadow), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shop-button {
    background-color: var(--color-cartoon-primary);
    box-shadow: 0 4px 0 var(--color-cartoon-shadow), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.shop-button:hover {
    background-color: var(--color-cartoon-hover);
    box-shadow: 0 3px 0 var(--color-cartoon-shadow), 0 3px 5px rgba(0, 0, 0, 0.1);
}

.header-action-btn.btn-primary {
    background-color: var(--color-cartoon-primary) !important;
    color: white !important;
    transform: translateY(0) !important;
}

.header-action-btn.btn-primary:hover {
    background-color: var(--color-cartoon-hover) !important;
    transform: translateY(2px) !important;
    color: white !important;
}

.btn-discord {
    background-color: var(--color-discord);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 rgba(60, 71, 203, 0.8);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-discord:hover {
    background-color: var(--color-discord-hover);
    color: white;
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(60, 71, 203, 0.8);
}

.btn-discord:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 rgba(60, 71, 203, 0.8);
    transition: all 0.1s ease;
}

.feature-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.news-section {
    margin-top: 4rem;
}

.btn-primary:hover,
.feature-btn:hover,
.news-read-btn:hover,
.shop-button:hover,
.btn-discord:hover,
.header-action-btn:hover {
    color: white !important;
}

.dropdown-item:hover {
    background-color: var(--color-cartoon-primary);
    color: white !important;
}

.btn-outline-primary:hover {
    color: white !important;
}

.header-action-btn.btn-success,
.feature-btn.btn-success {
    background-color: #22C55E !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    box-shadow: 0 4px 0 rgba(25, 135, 65, 0.8) !important;
    transform: translateY(0) !important;
}

.header-action-btn.btn-success:hover,
.feature-btn.btn-success:hover {
    background-color: #16A34A !important;
    box-shadow: 0 2px 0 rgba(25, 135, 65, 0.8) !important;
    transform: translateY(2px) !important;
}

.header-action-btn.btn-success:active,
.feature-btn.btn-success:active {
    transform: translateY(4px) !important;
    box-shadow: 0 0 0 rgba(25, 135, 65, 0.8) !important;
}

.join-section {
    background-color: rgba(40, 116, 166, 0.7);
    border-radius: 8px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 163, 217, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: visible;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.join-section .cameleon-img {
    position: absolute;
    top: -80px;
    left: -120px;
    width: 360px;
    height: auto;
    z-index: 10;
}

.join-section:hover {
    transform: translateY(0);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

.join-info {
    background: linear-gradient(145deg, rgba(80, 156, 206, 0.65), rgba(100, 180, 230, 0.75));
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    transform: translateY(0);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    height: 100%;
}

.copy-ip-btn {
    background-color: var(--color-cartoon-primary);
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 0 var(--color-cartoon-shadow), 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 45px;
}

.copy-ip-btn:hover {
    background-color: var(--color-cartoon-hover);
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--color-cartoon-shadow), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.copy-ip-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--color-cartoon-shadow), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.copy-ip-btn.btn-success {
    background-color: #22C55E !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    box-shadow: 0 4px 0 rgba(25, 135, 65, 0.8) !important;
}

.copy-ip-btn.btn-success:hover {
    background-color: #16A34A !important;
    box-shadow: 0 2px 0 rgba(25, 135, 65, 0.8) !important;
    transform: translateY(2px) !important;
}

.copy-ip-btn.btn-success:active {
    transform: translateY(4px) !important;
    box-shadow: 0 0 0 rgba(25, 135, 65, 0.8) !important;
}

.join-npc {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.server-info-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    margin: 0 auto;
    width: 100%;
}

.server-info-button {
    background: linear-gradient(145deg, rgba(10, 61, 98, 0.7), rgba(26, 46, 74, 0.8));
    border-radius: 8px;
    padding: 12px 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.server-info-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

.server-info-button .info-label {
    font-weight: 600;
    color: var(--color-btn-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.server-info-button .info-value {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .server-info-buttons {
        gap: 8px;
    }
    
    .server-info-button {
        padding: 10px;
    }
    
    .server-info-button .info-label {
        font-size: 0.75rem;
    }
    
    .server-info-button .info-value {
        font-size: 0.9rem;
    }
}
