/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Orbitron:wght@500;700&display=swap');

/* New color scheme - green inspired */
:root {
    --primary-color: #4CAF50;     /* Medium green */
    --secondary-color: #2E7D32;   /* Dark green */
    --accent-color: #8BC34A;      /* Light green */
    --text-color: #2D3748;        /* Dark blue-gray */
    --light-text: #718096;        /* Medium gray */
    --background-color: #F7FAFC;  /* Very light gray */
    --card-bg: #FFFFFF;           /* White */
    --dark-bg: #1A202C;           /* Very dark blue-gray */
    --gradient-1: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    --gradient-2: linear-gradient(135deg, #8BC34A 0%, #CDDC39 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Container for consistent padding/width */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: var(--secondary-color);
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background: var(--gradient-2);
}

/* Header and Navigation */
header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.company-name:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

nav ul li a:hover, 
nav ul li a.active {
    background-color: var(--background-color);
    color: var(--primary-color);
}

/* Mobile navigation toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 130px 0 80px;
    position: relative;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
    margin-top: 60px; /* Add space for fixed header */
}

/* Add an overlay for better text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for better readability */
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 1); /* Make it fully white for better visibility */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero .btn {
    background-color: white;
    color: var(--primary-color);
    z-index: 2;
    font-weight: bold;
    padding: 14px 32px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animated background shapes */
.shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -50px;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 15%;
    animation-delay: 1s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape:nth-child(4) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--card-bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature:nth-child(2n) .feature-icon {
    color: var(--secondary-color);
    background: rgba(46, 125, 50, 0.1);
}

.feature:nth-child(3n) .feature-icon {
    color: var(--accent-color);
    background: rgba(139, 195, 74, 0.1);
}

.feature h3 {
    margin-bottom: 15px;
}

.feature p {
    color: var(--light-text);
}

/* Wave divider for Features section */
.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider-top .shape-fill {
    fill: var(--background-color);
}

/* Footer - New Design */
footer {
    background-color: var(--background-color);
    position: relative;
    padding: 80px 0 30px;
    margin-top: 80px;
    overflow: hidden;
}

/* Footer wave top decoration */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--card-bg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

/* Upper footer with gradient border */
.footer-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), var(--secondary-color), var(--accent-color), transparent);
}

/* Logo section */
.footer-logo {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo .company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0;
    margin-bottom: 15px;
    text-decoration: none;
    display: inline-block;
}

.footer-logo .company-name:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-description {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Links section */
.footer-links {
    flex: 1 1 200px;
}

.footer-links h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--light-text);
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '›';
    margin-right: 8px;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    color: var(--accent-color);
}

/* Contact section */
.footer-contact {
    flex: 1 1 300px;
}

.footer-contact h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    background: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
}

.footer-contact .contact-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1rem;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
}

.footer-contact .contact-item:nth-child(2) i {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--secondary-color);
}

.footer-contact .contact-item:nth-child(3) i {
    background-color: rgba(139, 195, 74, 0.1);
    color: var(--accent-color);
}

.footer-contact .contact-item p {
    color: var(--light-text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact .contact-item a {
    color: var(--light-text);
    transition: var(--transition);
}

.footer-contact .contact-item a:hover {
    color: var(--primary-color);
}

/* Copyright bar */
.copyright {
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    margin-bottom: 0;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Media queries for footer responsiveness */
@media (max-width: 992px) {
    footer {
        padding-top: 60px;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        flex: 1 1 45%;
    }
    
    .copyright {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
    }
    
    .logo img {
        height: 35px;
    }
    
    .company-name {
        margin-left: 10px;
        margin-top: 0;
        font-size: 0.95rem;
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 15px;
        order: 3;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 15px;
        width: 100%;
    }
    
    .mobile-nav-toggle {
        display: block;
        order: 2;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer mobile styles */
    .footer-logo, .footer-links, .footer-contact {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* Legal Pages Styling */
.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.last-updated {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    background-color: var(--white);
    border: var(--pixel-border);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.15);
}

.legal-section h2 {
    color: var(--game-green);
    margin-bottom: 20px;
    border-bottom: 4px solid #eee;
    padding-bottom: 10px;
}

.legal-section h3 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section ul li {
    list-style-type: square;
    margin-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.legal-section ul li::before {
    content: "▪";
    color: var(--game-green);
    position: absolute;
    left: -20px;
    top: 0;
}

/* Animation for the feature cards */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.feature:hover .feature-icon {
    animation: pulse 1s infinite;
}

/* Animation for the buttons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn:hover {
    animation: float 1.5s ease infinite;
}

/* Block building animation for hero */
@keyframes blockBuild {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-block-animation {
    animation: blockBuild 0.5s ease forwards;
    opacity: 0;
}

.hero h1 {
    animation-delay: 0.1s;
}

.hero p {
    animation-delay: 0.3s;
}

.hero .btn {
    animation-delay: 0.5s;
}

/* Minecraft cursor - fixing the disappearing cursor issue */
.minecraft-cursor {
    cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFZSURBVFhH7ZYxTsNAEEWnQUJCChHELhygTc0VSLgBZ+AQHNF9iNJQcQAOkCoFHRISLiipkWgC8//g2SyW1yYbh4KC/6Td8e7M6G/Zsp3CHx2zxWIziUHHaiWOxTWJN/FB/JD4FEVbVQk7XgmmK1Vgr6g3GEj7ECvCYWJSz7RgqCoy76bAtFBsNY6yjARYzBN0XYMUnHW9Xnr9Y90zLYChaYU3TPPMO6vXEsyFHbCECrCFUjMGFxLctd7TNGVFDnAKSkWBY9FcBdmjMx77yUv8OISjKMKYtL5GQlZi8VQG6tKsLAtaOzYwlM+95yx+TqBvmApQ22Vwr1E8FaCmaSLVLNYCrnkp71lLWVQjJFDqvxfwaLlqVJuJA/G8tZLElcTVduLYC9jdavGprIaYS7A9X+8l/pOYkOgWR9VHJ8SrxOPmIxkuDnuZfIi7/0/otRMX+N8Ke4J50NkR3QAAAABJRU5ErkJggg=='), auto !important;
}

/* Default pointer cursor for clickable elements */
.minecraft-pointer {
    cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJESURBVFhH7ZZLaBNRFIb/mUnSJm00xcYUIQutVQMtNEXELny0C7GIuBHcKIILceVSXAmuXLlzIYKCG8GNFBRcuFBEbGtbrdHU0tgaH9VokubVx3icO0zINE1mJiCIH/wy59x7z/kzc+69Z1Ks49+CkzpuMDuYV9Zx6Gw+n3++uLi4tlL4AyKRiBYOh/cEg8EQeXWhnSyQrcgCmWfzuTzfMVU0Gg26UCi8WFhYGMnlcrXDw8O3qGbCbrerY7HYsWw2e6dcLv+i4obQkuWvVCrhVCoVMRgMdyVJapYejZCWZTmjVqvvLi8vR+bn572kNoSWAGQMRSaTGXa5XPeDoZBTp9PR4NrSwsLDe3X0/xrUHIdKpULOZi9aLZZr0Wj0ADfPGkpYm4ZiGf3+aTcpNdH2/QgUqsTM3FznmzdvH7ylmgkt5wBFrVZ3Pnr85HQmk2l6O0LbaUAVCHu93iCZrBHPATo9pAJT4wIQ6QKiIXSACYhkgBOPx6+SydrvB6SJ6QDl79bqbDaZ2kpqTYhNQBYlZDLZLaSuIXYK9IBC+EwUdJqU8k8E+HpVT6bqf9MbOQUVSkOO+3vkOTiRTF6emZn5QbUG2m7BRgQCgZN2u30fp/+ZLg6vWr2ot9kujIyMnLLZbFzNSCRSViqVb0ZHR8+TKgSxXyD3C7OTk5PXqWSJyWS67PP5LpLJxmazPVKr1UNUE4ZYAdwTExMhVyDgGQ+HTbtjsfNHjz2YnZ29SFURGPYb/nt+A8OwpnTTlN+XAAAAAElFTkSuQmCC'), pointer !important;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 120px 0 70px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .company-name {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 90px 0 50px;
        margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Animation for Feature Icons */
@keyframes rotateIcon {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.feature:hover .feature-icon {
    animation: rotateIcon 1s ease;
}

/* Media queries for footer responsiveness */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-links, 
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hero buttons layout */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* Secondary button style for Partner Login */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Login page styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-color) 0%, #E8F5E8 100%);
    padding: 120px 20px 80px;
}

.login-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.login-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.login-header h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #F7FAFC;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
}

.error-message {
    background-color: #FED7D7;
    color: #C53030;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 1px solid #FEB2B2;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
}

.login-footer p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.login-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.login-footer a:hover {
    color: var(--secondary-color);
}

/* Partner login section at bottom */
.partner-login-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 2rem;
    text-align: center;
}

.partner-login-card {
    max-width: 600px;
    margin: 0 auto;
}

.partner-login-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.partner-login-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.partner-login-card .btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1rem;
}

.partner-login-card .btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* Mobile responsiveness for login */
@media (max-width: 768px) {
    .partner-login-section {
        padding: 2rem 0;
    }
    
    .partner-login-card h4 {
        font-size: 1.3rem;
    }
    
    .partner-login-card p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .login-section {
        padding: 100px 15px 60px;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .login-card {
        padding: 1.5rem 1rem;
    }
}

/* Dashboard Styles */
.dashboard-body {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.dashboard-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.dashboard-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.dashboard-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-email {
    color: var(--text-color);
    font-weight: 600;
}

.logout-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.logout-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.dashboard-container {
    display: flex;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background: white;
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    padding: 2rem 0;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-header h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.menu-item {
    margin: 0;
    width: 100%;
}

.menu-item a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
}

.menu-item a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.menu-item.active a {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.menu-item a i {
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
    max-width: calc(100vw - 250px);
    overflow-x: auto;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-header h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin: 0;
}

.content-header h1[onclick] {
    transition: var(--transition);
    user-select: none;
}

.content-header h1[onclick]:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.refresh-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.refresh-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: var(--light-text);
    font-size: 1.1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.loading i {
    margin-right: 0.5rem;
}

/* Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.data-table th {
    background: #f8f9fa;
    color: var(--text-color);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-color);
}

.data-table tr:hover {
    background: #f8f9fa;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-failed {
    background: #f8d7da;
    color: #721c24;
}

.status-competed {
    background: #d4edda;
    color: #155724;
}

.status-unknown {
    background: #e2e3e5;
    color: #495057;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagination-info {
    color: var(--light-text);
    font-size: 0.9rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-number {
    background: white;
    border: 1px solid #dee2e6;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    min-width: 40px;
    text-align: center;
}

.page-number:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-ellipsis {
    padding: 8px 12px;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Mobile Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 1rem;
    }
    
    .dashboard-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .user-info {
        flex-shrink: 0;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        box-shadow: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .dashboard-container {
        flex-direction: column;
        margin-top: 120px;
    }
    
    .content-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
        .data-table {
        font-size: 0.8rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    .data-table thead,
    .data-table tbody,
    .data-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .data-table thead {
        width: calc(100% - 1em);
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0.5rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .page-btn,
    .page-number {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
} 