/* Enhanced navigation buttons */

.nav a {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.03em;
    overflow: hidden;
    box-shadow: 0 4px 6px rgb(0, 0, 0);
    border: 1px solid rgb(2, 83, 29);
}

.nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgb(56, 56, 56);
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1) 38%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 48%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.nav a:hover::before {
    transform: translateX(100%);
}


/* Register button special styling */

.nav a:last-child {
    background: linear-gradient(135deg, #000000, #005a29);
    font-weight: 700;
}

.nav a:last-child:hover {
    background: linear-gradient(135deg, #333333, #00702b);
}


/* Isometric Background */

body {
    background-color: #000000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%233b82f6' fill-opacity='0.05' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 104px;
    animation: moveHexBackground 1s linear infinite;
}


/* Enhanced header with slight depth */

header .container {
    box-shadow: 0 4px 20px rgb(0, 0, 0);
    border: 1px solid rgb(0, 43, 7);
}


/* Improve logo appearance */

.logo a {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}


/* Remove blue underlined hyperlink text */

a {
    text-decoration: none;
    color: inherit;
}


/* Reset link colors for all links in the site */

a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}


/* Specific styling for links that should retain visible hover states but without underlines */

.container a:hover {
    color: inherit;
}


/* Add subtle animation to elements when they come into view */

@keyframes moveHexBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 0;
    }
}

.container> div {
    animation: fadeInUp 0.6s ease-out forwards;
}


/* Base styles */

body {
    font-family: 'Figtree', sans-serif;
    background-color: #000000;
    color: #00ff55;
    margin: 0;
    padding: 0;
}


/* Container utilities */

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


/* Flex utilities */

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.space-x-4> *+ * {
    margin-left: 1rem;
}

.space-y-2> *+ * {
    margin-top: 0.5rem;
}


/* Grid utilities */

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}


/* Width utilities */

.w-full {
    width: 100%;
}

.w-11\/12 {
    width: 91.666667%;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-6 {
    width: 1.5rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-lg {
    max-width: 32rem;
}


/* Height utilities */

.h-1 {
    height: 0.25rem;
}

.h-auto {
    height: auto;
}

.min-h-1000px {
    min-height: 1000px;
}


/* Margin utilities */

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}


/* Padding utilities */

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}


/* Text utilities */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-extrabold {
    font-weight: 800;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.leading-tight {
    line-height: 1.25;
}


/* Background colors */

.bg-slate-800 {
    background-color: #001803;
}

.bg-slate-700 {
    background-color: #001805;
}

.bg-slate-600 {
    background-color: #012200;
}

.bg-slate-500 {
    background-color: #648b66;
}

.bg-slate-400 {
    background-color: #94b896;
}

.bg-blue-500 {
    background-color: #00290c;
}

.bg-blue-600 {
    background-color: #25eb3f;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-700 {
    background-color: #375139;
}

.bg-gray-900 {
    background-color: #132711;
}

.bg-white {
    background-color: #ffffff;
}

.bg-indigo-600 {
    background-color: #46e553;
}

.bg-opacity-75 {
    background-opacity: 0.75;
}


/* Text colors */

.text-white {
    color: #ffffff;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-600 {
    color: #354639;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-500 {
    color: #6b806e;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-slate-800 {
    color: #1e293b;
}

.text-transparent {
    color: transparent;
}

.text-blue-200 {
    color: #bfdbfe;
}


/* Border utilities */

.border-black {
    border-color: #000000;
}

.border-1 {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border {
    border-width: 1px;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-collapse {
    border-collapse: collapse;
}


/* Rounded utilities */

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}


/* Shadow utilities */

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}


/* Hover states */

.hover\:bg-slate-600:hover {
    background-color: #475569;
}

.hover\:bg-slate-400:hover {
    background-color: #94a3b8;
}

.hover\:bg-blue-600:hover {
    background-color: #005212;
}

.hover\:bg-gray-600:hover {
    background-color: #4b5563;
}

.hover\:bg-blue-700:hover {
    background-color: #ffffff;
}

.hover\:bg-indigo-500:hover {
    background-color: #74e9a1;
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:from-blue-400:hover {
    --tw-gradient-from: #60fa74;
    --tw-gradient-to: rgba(96, 165, 250, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:via-purple-400:hover {
    --tw-gradient-stops: var(--tw-gradient-from), #c084fc, var(--tw-gradient-to);
}

.hover\:to-blue-400:hover {
    --tw-gradient-to: #60a5fa;
}


/* Transform and transition */

.transform {
    transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-duration-300 {
    transition-duration: 300ms;
}


/* Custom elements */

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-slate-300 {
    --tw-gradient-from: #cbd5e1;
    --tw-gradient-to: rgba(203, 213, 225, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-slate-500 {
    --tw-gradient-stops: var(--tw-gradient-from), #64748b, var(--tw-gradient-to);
}

.to-white {
    --tw-gradient-to: #ffffff;
}

.from-slate-800 {
    --tw-gradient-from: #020202;
    --tw-gradient-to: rgba(30, 41, 59, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-slate-700 {
    --tw-gradient-stops: var(--tw-gradient-from), #044910, var(--tw-gradient-to);
}

.to-slate-800 {
    --tw-gradient-to: #000000;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}


/* Focus states */

.focus\:border-indigo-500:focus {
    border-color: #63f187;
}

.focus\:ring-indigo-500:focus {
    --tw-ring-color: #63f187;
}


/* Block elements */

.block {
    display: block;
}


/* Position utilities */

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.top-2 {
    top: 0.5rem;
}

.right-2 {
    right: 0.5rem;
}

.bottom-0 {
    bottom: 0;
}


/* Animation */

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    10%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}


/* Glow effect */

.glow-effect {
    box-shadow: 0 0 10px rgb(0, 83, 4), 0 0 20px rgb(0, 105, 26), 0 0 30px rgb(0, 145, 24);
}

.glow-effect:hover {
    box-shadow: 0 0 15px rgb(0, 83, 4), 0 0 25px rgb(0, 105, 26), 0 0 35px rgb(0, 145, 24);
}


/* Form elements */

input,
textarea,
select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
}

button {
    cursor: pointer;
}


/* Responsive design */

@media (min-width: 640px) {
    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:flex-row {
        flex-direction: row;
    }
    .lg\:w-1\/2 {
        width: 50%;
    }
    .lg\:mb-0 {
        margin-bottom: 0;
    }
    .lg\:text-left {
        text-align: left;
    }
    .lg\:px-16 {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .lg\:mx-8 {
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Fix hidden elements */

.hidden {
    display: none;
}

.overflow-x-auto {
    overflow-x: auto;
}

.font-sans {
    font-family: 'Figtree', sans-serif;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}