/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a1a;
}

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

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.nav-logo h1 {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-logo i {
    margin-right: 10px;
    color: #f39c12;
}

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

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #e74c3c;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ecf0f1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.leo-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.staff-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.management-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gangs-header {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
}

.business-header {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-stats .stat h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #f39c12;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

.btn-tertiary {
    background-color: #3498db;
    color: white;
}

.btn-tertiary:hover {
    background-color: #2980b9;
}

/* Sections */
section {
    padding: 80px 0;
}

.about {
    background-color: #2c3e50;
    color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #e74c3c;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background-color: #34495e;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.card-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #e74c3c;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #f39c12;
    border-bottom-color: #f39c12;
}

/* News Section */
.news {
    background-color: #ecf0f1;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Join Section */
.join {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.join h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.join-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.server-info,
.requirements {
    background-color: #34495e;
    padding: 30px;
    border-radius: 10px;
}

.server-info h3,
.requirements h3 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.requirements ul {
    list-style: none;
}

.requirements li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 5px;
}

/* Staff Specific Styles */
.staff-overview {
    background-color: #ecf0f1;
}

.staff-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.staff-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

.staff-roles {
    background-color: #2c3e50;
    color: white;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.role-card {
    background-color: #34495e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.role-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.role-card h3 {
    margin-bottom: 15px;
    color: #ecf0f1;
}

.role-card ul {
    text-align: left;
    margin-top: 20px;
}

.role-card li:before {
    content: "• ";
    color: #e74c3c;
    margin-right: 5px;
}

.senior-staff {
    background-color: #ecf0f1;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.staff-member {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.staff-member h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info {
    color: #7f8c8d;
}

/* LEO Specific Styles */
.department-overview {
    background-color: #ecf0f1;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.overview-stats {
    display: grid;
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.departments {
    background-color: #2c3e50;
    color: white;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.department-card {
    background-color: #34495e;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.department-card i {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.department-card h3 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.department-card ul {
    text-align: left;
    margin-top: 20px;
}

.department-card li:before {
    content: "• ";
    color: #1e3c72;
    margin-right: 5px;
}

.requirements {
    background-color: #ecf0f1;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.req-category {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.req-category h3 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.req-category i {
    color: #1e3c72;
    margin-right: 10px;
}

.req-category ul {
    list-style: none;
}

.req-category li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 8px;
}

.ranks {
    background-color: #2c3e50;
    color: white;
}

.ranks h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #e74c3c;
}

.ranks-list {
    max-width: 800px;
    margin: 0 auto;
}

.rank-item {
    display: flex;
    align-items: center;
    background-color: #34495e;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid #1e3c72;
}

.rank-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    gap: 5px;
}

.rank-badge.chief {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.rank-badge.captain {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.rank-badge.lieutenant {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.rank-badge.sergeant {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.rank-badge.officer {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.rank-badge.cadet {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.rank-badge i {
    color: white;
    font-size: 1rem;
}

.rank-info h3 {
    color: #ecf0f1;
    margin-bottom: 10px;
}

/* Management Specific Styles */
.founder-section {
    background-color: #ecf0f1;
}

.founder-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image i {
    font-size: 4rem;
    color: white;
}

.founder-info h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.title {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.bio {
    margin-bottom: 30px;
    line-height: 1.8;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.founder-stats .stat {
    text-align: center;
}

.founder-stats .stat h4 {
    font-size: 1.8rem;
    color: #f093fb;
    margin-bottom: 5px;
}

.executive-team {
    background-color: #2c3e50;
    color: white;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.executive-member {
    background-color: #34495e;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.executive-member .member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.executive-member .member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.executive-member h3 {
    margin-bottom: 10px;
    color: #ecf0f1;
}

.executive-member .role {
    color: #f093fb;
    font-weight: 600;
    margin-bottom: 30px;
}

.responsibilities {
    text-align: left;
    margin-bottom: 20px;
}

.responsibilities h4 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.responsibilities ul {
    list-style: none;
}

.responsibilities li:before {
    content: "→ ";
    color: #f093fb;
    margin-right: 5px;
}

.contact {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Gang Specific Styles */
.warning-notice {
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.warning-notice i {
    color: #f39c12;
    font-size: 1.2rem;
}

.gang-system {
    background-color: #ecf0f1;
}

.system-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.system-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.active-gangs {
    background-color: #2c3e50;
    color: white;
}

.gangs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gang-card {
    background-color: #34495e;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gang-card.major-gang {
    border-color: #e74c3c;
}

.gang-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gang-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.gang-header h3 {
    color: #ecf0f1;
    flex: 1;
}

.gang-type {
    background-color: #7f8c8d;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gang-status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gang-status.active {
    background-color: #27ae60;
    color: white;
}

.gang-info {
    margin-bottom: 20px;
    line-height: 1.8;
}

.gang-info p {
    margin-bottom: 8px;
}

.gang-description {
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.recruitment-status {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #7f8c8d;
}

.recruitment-status span {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.recruitment-status .recruiting {
    background-color: #27ae60;
    color: white;
}

.recruitment-status .closed {
    background-color: #e74c3c;
    color: white;
}

.recruitment-status .selective {
    background-color: #f39c12;
    color: white;
}

.recruitment-status .invitation {
    background-color: #9b59b6;
    color: white;
}

/* Business Specific Styles */
.economy-overview {
    background-color: #ecf0f1;
}

.economy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.economy-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.economy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.business-categories {
    background-color: #2c3e50;
    color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #34495e;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.category-card i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: #ecf0f1;
}

.category-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.category-card ul {
    text-align: left;
    list-style: none;
}

.category-card li:before {
    content: "• ";
    color: #f39c12;
    margin-right: 5px;
}

.featured-businesses {
    background-color: #ecf0f1;
}

.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.business-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.business-card.premium {
    border: 2px solid #f39c12;
}

.business-card:hover {
    transform: translateY(-5px);
}

.business-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.business-header h3 {
    color: #2c3e50;
    flex: 1;
}

.business-type {
    background-color: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.open {
    background-color: #27ae60;
    color: white;
}

.business-info {
    margin-bottom: 15px;
    line-height: 1.6;
}

.business-info p {
    margin-bottom: 5px;
    color: #7f8c8d;
}

.business-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.business-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e74c3c;
    transform: translateY(-2px);
}

.server-status {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.server-status.online {
    background-color: #27ae60;
    color: white;
}

.server-status.offline {
    background-color: #e74c3c;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

/* Timeline Styles */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e74c3c;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-date {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    position: relative;
}

.timeline-date:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #e74c3c;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-date:after {
    left: 100%;
    margin-left: 15px;
}

.timeline-item:nth-child(even) .timeline-date:after {
    right: 100%;
    margin-right: 15px;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-grid,
    .economy-content {
        grid-template-columns: 1fr;
    }
    
    .founder-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-date:after,
    .timeline-item:nth-child(even) .timeline-date:after {
        left: -45px;
        right: auto;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .about-grid,
    .news-grid,
    .gangs-grid,
    .businesses-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-card,
.news-card,
.gang-card,
.business-card {
    animation: fadeInUp 0.8s ease-out;
}