@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;900&display=swap');

:root {
    --primary-orange: #ff9d00;
    --dark-text: #3d444b;
    --nav-height: 90px;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    height: var(--nav-height);
    background: #ffffff;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.separator {
    width: 2px;
    height: 40px;
    background: #eeeeee;
    margin: 0 30px;
}


.nav-links ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    text-decoration: none;
    color: #9a9a9a;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-orange);
}


.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-item.active::after, .nav-item:hover::after {
    width: 100%;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.status-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-ring {
    width: 12px;
    height: 12px;
    background: var(--primary-orange);
    border-radius: 50%;
    position: relative;
    border: 4px solid white;
    outline: 1px solid var(--primary-orange);
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.online-count {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 14px;
}

.online-count strong {
    color: var(--primary-orange);
    font-size: 18px;
}

.shop-button {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: white;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(255, 157, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 157, 0, 0.5);
    filter: brightness(1.05);
}

.shop-bee {
    height: 45px;
    position: absolute;
    right: -20px;
    top: -5px;
    transition: transform 0.5s ease;
}

.shop-button:hover .shop-bee {
    transform: translate(5px, -5px) rotate(-10deg);
}

.hero {
    margin-top: 150px;
    text-align: center;
}

.sub-title {
    font-size: 18px;
    color: #666;
    letter-spacing: 2px;
}

.main-title {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 40px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}


.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 250px;
    transform: rotate(-3deg); 
    transition: 0.3s;
}

.info-card.purple {
    background: var(--purple);
    color: white;
    transform: rotate(3deg);
}

.btn-action {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.main-render {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.hero-center {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}


.news-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
}

.news-badge:hover {
    transform: scale(1.2) rotate(-5deg);
    filter: brightness(1.1);
}

.main-title-large {
    font-size: 110px;
    font-weight: 900;
    color: var(--primary-orange);
    margin: 0;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(255, 157, 0, 0.2);
    animation: floatTitle 4s ease-in-out infinite;
}

@keyframes floatTitle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


.sub-description {
    color: #888;
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.5px;
}


.social-hero {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-card {
    background: white;
    padding: 15px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.social-card.discord {
    border-bottom: 4px solid #5865F2;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.social-info .label {
    font-size: 10px;
    color: #aaa;
    font-weight: 800;
}

.social-info .val {
    font-size: 18px;
    color: #333;
    font-weight: 900;
}


.server-ip-box {
    background: #333;
    color: white;
    padding: 15px 35px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.server-ip-box .label { font-size: 10px; opacity: 0.6; font-weight: 800; }
.server-ip-box .val { font-size: 20px; font-weight: 900; color: var(--primary-orange); }

.discord-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-discord-long {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #2c2f33;
    border: 2px solid #7289da; 
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(114, 137, 218, 0.2);
    
    padding: 12px 50px 12px 20px;
    min-width: 150px;
    width: fit-content;
}

.discord-text {
    display: flex;
    flex-direction: column;
    z-index: 2; 
}

.top-txt {
    color: #7289da;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.bot-txt {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.discord-avatar {
    position: absolute;
    right: -10px; 
    height: 70px; 
    width: auto;
    bottom: -5px;
    transition: transform 0.3s ease;
    z-index: 3;
}

.btn-discord-long:hover {
    transform: translateY(-3px);
    background-color: #23272a;
    box-shadow: 0 0 25px rgba(114, 137, 218, 0.5); 
    border-color: #99aab5; 
}

.btn-discord-long:hover .discord-avatar {
    transform: scale(1.1) rotate(5deg); 
}
.rules-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.rules-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title-rules {
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: 0 5px 15px rgba(255, 157, 0, 0.1);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.rule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 157, 0, 0.1);
    border-color: var(--primary-orange);
}

.rule-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-orange);
    color: white;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.3);
}

.rule-card h3 {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #333;
    font-size: 22px;
    font-weight: 800;
}

.rule-card ul {
    list-style: none;
    padding: 0;
}

.rule-card ul li {
    color: #666;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    font-weight: 600;
}

.rule-card ul li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: 900;
    position: absolute;
    left: 0;
}