@import "./fonts/Arad/font.css";
@import "./login.css";

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

body {
    font-family: "Arad", "AradDots2", "AradDots3";
    background-color: #1a1a1a;
    color: #E5E5E5;
    direction: rtl;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #2a2a2a;
    padding: 15px 0;
    border-bottom: 2px solid #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    width: 100px;
}

.logo-game {
    color: #E5E5E5;
}

.logo-craft {
    color: #ff9500;
    background: linear-gradient(45deg, #ff9500, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #E5E5E5;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff9500;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    text-align: center;
}

.main-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: #E5E5E5;
}

.main-title .highlight {
    color: #ffcc00;
}

.welcome-text {
    font-size: 16px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.highlight-text {
    color: #ffcc00;
}

/* nations Section */
.nations-section {
    padding: 40px 0;
}

.section-title {
    font-size: 32px;
    color: #ffcc00;
    margin-bottom: 30px;
    text-align: right;
    font-family: "AradDots3";
    font-weight: 800;
}

.nations-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.nation-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.1);
}

.nation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nation-status {
    background-color: #3a3a3a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #cccccc;
}

.ideology{
    font-family: "Arad";
    color: #9CA3AF;
    font-size: 20px;
    font-weight: 400;
}

.nation-name {
    font-family: "AradDots2";
    font-family: 700;
    font-size: 24px;
    color: #ffcc00;
}

.nation-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    /* padding-bottom: 15px; */
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: #999999;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-text {
    color: #E5E5E5;
    font-family: "Arad";
    font-weight: 400;
    font-size: 16px;
}
.info-text2 {
    color: #E5E5E5;
    font-weight: 200;
    font-size: 16px;
}

.nation-players {
    margin-bottom: 15px;
    /* padding: 10px; */
    /* background-color: #333333; */
    border-radius: 8px;
}

.players-text {
    color: #999999;
    font-size: 14px;
}

.nation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nation-button {
    background-color: #444444;
    color: #E5E5E5;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.nation-button:hover {
    background-color: #555555;
}

.nation-date {
    color: #999999;
    font-size: 14px;
}

/* Rules Section */
.rules-section {
    padding: 60px 0;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin-right: 0;
}

.rule-item {
    padding: 15px 25px;
    border-radius: 8px;
    color: #E5E5E5;
    font-size: 16px;
    transition: background-color 0.3s ease;
}


/* Discord CTA Section */
.discord-section {
    padding: 80px 0;
    text-align: center;
    background-color: #222222;
}

.discord-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #E5E5E5;
}

.discord-title .highlight {
    color: #ffcc00;
}

.discord-text {
    font-size: 16px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.discord-button {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #E5E5E5;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-family: "AradDots2";
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #666666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-title {
        font-size: 32px;
    }

    .welcome-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .nation-name {
        font-size: 20px;
    }

    .discord-title {
        font-size: 28px;
    }

    .discord-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nation-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .main-title {
        font-size: 24px;
    }

    .discord-title {
        font-size: 22px;
    }
}


/* custom scroll bar */
*::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #262626;
}

*::-webkit-scrollbar-track:hover {
  background-color: #262626;
}

*::-webkit-scrollbar-track:active {
  background-color: #262626;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #9CA3AF;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #9CA3AF;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #9CA3AF;
}
