
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=DynaPuff:wght@400..700&family=Noto+Sans+Nabataean&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
        url("Assets/Images/background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'DynaPuff', sans-serif;
    color: #ffff00;
    scroll-behavior: smooth;
}

/* NAVIGATION BAR */

.navbar {
    position: sticky;
    top: 0;
    background: rgba(30, 20, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid rgb(48, 35, 0);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo-icon {
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.nav-logo-icon:hover {
    transform: scale(1.1) rotateZ(5deg);
}

.nav-logo span {
    color: rgb(255, 187, 0);
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgb(255, 187, 0);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px #000000;
    position: relative;
}

.nav-link:hover {
    color: rgb(255, 255, 100);
    text-shadow: 0 0 10px rgba(255, 187, 0, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: rgb(255, 187, 0);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* HERO SECTION */

.hero-section {
    background: linear-gradient(135deg, rgba(48, 35, 0, 0.6), rgba(60, 40, 0, 0.6));
    padding: 60px 20px;
    text-align: center;
    border-bottom: 8px solid rgb(48, 35, 0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    filter: drop-shadow(0 0 20px rgba(255, 187, 0, 0.5));
}

.hero-tagline {
    font-size: 32px;
    color: rgb(255, 187, 0);
    text-shadow: 4px 4px 8px #000000;
    margin-bottom: 25px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 4px 4px 8px #000000, 0 0 10px rgba(255, 187, 0, 0.3); }
    50% { text-shadow: 4px 4px 8px #000000, 0 0 20px rgba(255, 187, 0, 0.6); }
}

.server-status {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 16px;
    color: rgb(255, 238, 0);
    text-shadow: 2px 2px 4px #000000;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.status-indicator.online {
    background-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.status-indicator.offline {
    background-color: #ff0000;
}

.version {
    color: rgb(255, 187, 0);
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes slideIn {
    from {
        transform: translateY(-100px) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    to {
        transform: translateY(-100px) translateX(-50%);
        opacity: 0;
    }
}

/* NOTIFICATION STYLE */
.notification {
    position: fixed;
    left: 50%;
    background: linear-gradient(135deg, rgb(255, 187, 0), rgb(255, 238, 0));
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(255, 187, 0, 0.5);
    font-weight: bold;
    font-family: 'Asap', sans-serif;
    z-index: 9999;
    animation: slideOut 0.3s ease forwards;
    border: 2px solid rgb(48, 35, 0);
}

.notification.show {
    animation: slideIn 0.3s ease forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* BUTTONS - CALL TO ACTION */

.btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DynaPuff', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn-icon {
    font-size: 22px;
}

.btn-logo {
    width: 24px;
    height: 24px;
    display: inline-block;
    object-fit: contain;
}

.social-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(255, 187, 0), rgb(255, 238, 0));
    color: #000;
    border: 3px solid rgb(48, 35, 0);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 187, 0, 0.5);
    background: linear-gradient(135deg, rgb(255, 210, 0), rgb(255, 255, 100));
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(100, 100, 200, 0.8);
    color: #fff;
    border: 3px solid rgb(80, 80, 180);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(120, 120, 220, 0.9);
    box-shadow: 0 10px 25px rgba(100, 100, 200, 0.5);
}

.btn-discord {
    background: linear-gradient(135deg, #5865f2, #7289da);
    color: #fff;
    border: 3px solid #5865f2;
    margin-top: 15px;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5);
}

#ip {
    margin: 30px 0 40px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#ip a {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(48, 35, 0, 0.8), rgba(60, 40, 0, 0.8));
    border: 5px solid rgb(255, 187, 0);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 187, 0, 0.6), 0 8px 25px rgba(0, 0, 0, 0.7);
}

#ip a:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(48, 35, 0, 1), rgba(60, 40, 0, 1));
    border-color: rgb(255, 238, 0);
    box-shadow: 0 0 50px rgba(255, 187, 0, 0.8), 0 15px 50px rgba(255, 187, 0, 0.6);
}

#ip img {
    transition: transform 0.3s ease;
    max-width: 500px;
    width: 100%;
    max-height: 120px;
    height: auto;
    cursor: pointer;
}

#ip img:hover {
    transform: scale(1.08);
}

/* IP DISPLAY */

.ip-display-section {
    display: none;
}

.ip-content {
    max-width: 600px;
    margin: 0 auto;
}

.ip-label {
    color: rgb(255, 187, 0);
    font-size: 18px;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.ip-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid rgb(48, 35, 0);
    border-radius: 8px;
    padding: 15px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.ip-box code {
    font-size: 22px;
    color: rgb(255, 255, 100);
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    flex: 1;
}

.ip-copy-btn {
    background: rgb(255, 187, 0);
    border: 2px solid rgb(48, 35, 0);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-copy-btn:hover {
    background: rgb(255, 210, 0);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 187, 0, 0.5);
}

/* CONTAINER SECTIONS */

.container-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

#info-container,
#features-container,
#rules-container,
#store-container,
#discord-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border: 8px solid rgb(48, 35, 0);
    border-radius: 15px;
    background-image: url("Assets/Images/dirty-boi.png");
    background-repeat: repeat;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

#info-container h1,
#features-container h1,
#rules-container h1,
#store-container h1,
#discord-container h1 {
    color: rgb(255, 187, 0);
    text-shadow: 4px 4px 4px #000000;
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FEATURES GRID */

#features-container {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 20px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 187, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgb(255, 187, 0);
    box-shadow: 0 8px 20px rgba(255, 187, 0, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.feature-item h3 {
    color: rgb(255, 238, 0);
    font-size: 18px;
    text-shadow: 2px 2px 4px #000000;
}

/* RULES GRID */

.rules-intro {
    color: rgb(255, 238, 0);
    font-size: 16px;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 30px;
    font-style: italic;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.rule-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgb(48, 35, 0);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 60px;
}

.rule-item:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.7);
    border-color: rgb(255, 187, 0);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.rule-number {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 187, 0);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.rule-item h3 {
    color: rgb(255, 210, 0);
    font-size: 16px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px #000000;
}

.rule-item p {
    color: rgb(255, 238, 0);
    font-size: 13px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px #000000;
}

/* STORE/COSMETICS GRID */

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.cosmetic-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(48, 35, 0, 0.4));
    padding: 30px;
    border-radius: 12px;
    border: 3px solid rgb(48, 35, 0);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.cosmetic-card:hover {
    transform: translateY(-10px);
    border-color: rgb(255, 187, 0);
    box-shadow: 0 15px 40px rgba(255, 187, 0, 0.3);
}

.cosmetic-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: rgb(255, 187, 0);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cosmetic-card h3 {
    color: rgb(255, 210, 0);
    font-size: 22px;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px #000000;
}

.cosmetic-price {
    color: rgb(255, 187, 0);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000000;
}

.cosmetic-features {
    list-style: none;
    text-align: left;
}

.cosmetic-features li {
    color: rgb(255, 238, 0);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 187, 0, 0.2);
    font-size: 14px;
    text-shadow: 1px 1px 3px #000000;
}

.cosmetic-features li:last-child {
    border-bottom: none;
}

/* DISCORD SECTION */

#discord-container {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
}

.discord-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.discord-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.discord-logo {
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgb(48, 35, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.discord-logo:hover {
    transform: scale(1.1) rotateZ(-5deg);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.5);
    border-color: #5865f2;
}

.discord-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.discord-info h3 {
    color: rgb(255, 210, 0);
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px #000000;
}

.discord-info p {
    color: rgb(255, 238, 0);
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px #000000;
    line-height: 1.6;
}

#discord-container iframe {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 3px solid rgb(48, 35, 0);
}

/* FOOTER */

#footer {
    background: rgba(20, 15, 0, 0.95);
    border-top: 8px solid rgb(48, 35, 0);
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-section h4 {
    color: rgb(255, 187, 0);
    font-size: 18px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px #000000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section a {
    color: rgb(255, 238, 0);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: rgb(255, 187, 0);
    text-shadow: 0 0 8px rgba(255, 187, 0, 0.6);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 187, 0, 0.1);
    border: 2px solid rgb(48, 35, 0);
}

.social-links a:hover {
    background: rgb(255, 187, 0);
    transform: scale(1.15) rotateZ(10deg);
    border-color: rgb(255, 210, 0);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgb(48, 35, 0);
}

.footer-bottom h3 {
    color: rgb(255, 187, 0);
    text-shadow: 2px 2px 4px #000000;
    font-size: 16px;
    margin: 0;
}

/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .hero-tagline {
        font-size: 24px;
    }

    .server-status {
        gap: 15px;
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    #ip a {
        padding: 15px 20px;
        background: linear-gradient(135deg, rgba(48, 35, 0, 0.8), rgba(60, 40, 0, 0.8));
        border: 4px solid rgb(255, 187, 0);
        box-shadow: 0 0 25px rgba(255, 187, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    #ip img {
        max-width: 90%;
        max-height: 110px;
    }

    #features-container,
    #rules-container,
    #store-container,
    #discord-container {
        padding: 25px;
        max-width: 95%;
    }

    #info-container h1,
    #features-container h1,
    #rules-container h1,
    #store-container h1,
    #discord-container h1 {
        font-size: 32px;
    }

    .features-grid,
    .rules-grid,
    .store-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #discord-container {
        flex-direction: column;
        gap: 20px;
    }

    .discord-content {
        gap: 20px;
    }

    .discord-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .nav-menu {
        display: none;
    }

    .hero-logo img {
        max-height: 120px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .server-status {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    #info-container,
    #features-container,
    #rules-container,
    #store-container,
    #discord-container {
        padding: 15px;
        max-width: 100%;
    }

    #info-container h1,
    #features-container h1,
    #rules-container h1,
    #store-container h1,
    #discord-container h1 {
        font-size: 24px;
    }

    .rule-item {
        padding-left: 45px;
    }

    .rule-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    #discord-container iframe {
        max-width: 100%;
        height: auto;
    }

    .discord-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .footer-content {
        gap: 20px;
    }

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .nav-menu {
        display: none;
    }

    .hero-logo img {
        max-height: 120px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .server-status {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    #info-container,
    #features-container,
    #rules-container,
    #store-container,
    #discord-container {
        padding: 15px;
        max-width: 100%;
    }

    #info-container h1,
    #features-container h1,
    #rules-container h1,
    #store-container h1,
    #discord-container h1 {
        font-size: 24px;
    }

    .rule-item {
        padding-left: 45px;
    }

    .rule-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    #discord-container iframe {
        max-width: 100%;
        height: auto;
    }

    #ip {
        margin: 20px 0 30px 0;
        padding: 10px;
    }

    #ip a {
        padding: 15px;
        background: linear-gradient(135deg, rgba(48, 35, 0, 0.8), rgba(60, 40, 0, 0.8));
        border: 4px solid rgb(255, 187, 0);
        box-shadow: 0 0 20px rgba(255, 187, 0, 0.5), 0 8px 15px rgba(0, 0, 0, 0.7);
    }

    #ip img {
        max-width: 100%;
        max-height: 100px;
    }

    .footer-content {
        gap: 20px;
    }
}