/* Global Reset & Core Variables */
:root {
    --primary-color: #00e676;
    /* Vibrant Green */
    --accent-gold: #d4af37;
    /* Metallic Gold */
    --accent-orange: #ff9100;
    /* Sunset Orange */
    --secondary-color: #2979ff;
    /* Electric Blue */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --font-main: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Immersive Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/lion_full_V2.png'), url('images/gorilla_full.png'), url('images/polarbear_full.png'), url('images/hyena_full.png');
    background-position: -10% 10%, 110% 20%, -10% 80%, 110% 90%;
    background-repeat: no-repeat;
    background-size: 50vh, 60vh, 45vh, 50vh;
    opacity: 0.03;
    /* Barely visible */
    pointer-events: none;
    z-index: -1;
    filter: grayscale(100%);
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #00c853);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: -1px;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)),
        url('images/poster_v1.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #b3b3b3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    z-index: 2;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-card);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Developer Section */
.developer {
    padding: 100px 0;
    text-align: center;
}

.developer-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.developer-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

/* Privacy Policy Page */
.policy-content {
    padding: 150px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    color: #fff;
}

.policy-content p,
.policy-content li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 50px 0;
    background: #000;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Roster Section */
.roster-container {
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.roster-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.roster-grid {
    display: flex;
    gap: 30px;
    padding: 10px 20px;
    width: max-content;
}

.roster-card {
    min-width: 250px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.roster-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(41, 121, 255, 0.15) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.roster-card img {
    max-height: 90%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.roster-card:hover img {
    transform: scale(1.1);
}

.roster-card .name-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Updates Section */
.updates {
    background: rgba(40, 167, 69, 0.05);
    /* Subtle green tint */
    padding: 80px 0;
}

.update-card {
    background: var(--bg-card);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.version-badge {
    background: var(--primary-color);
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
}

.update-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column-reverse;
        padding-top: 120px;
        text-align: center;
        height: auto;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .developer-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .roster-card {
        min-width: 200px;
        height: 300px;
    }
}

/* Feedback Form Styles */
.feedback-section {
    padding: 150px 0 100px;
}

.feedback-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.feedback-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, var(--primary-color), #00c853);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-speed);
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
}

.feedback-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Admin Dashboard Styles */
.admin-section {
    padding: 120px 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.feedback-table-container {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    overflow-x: auto;
}

.feedback-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.feedback-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.feedback-table td {
    padding: 16px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    vertical-align: top;
}

.feedback-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.type-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--glass-bg);
    color: #fff;
}

.type-bug {
    color: #ff5252;
    border: 1px solid #ff5252;
}

.type-suggestion {
    color: #2979ff;
    border: 1px solid #2979ff;
}

.type-compliment {
    color: #00e676;
    border: 1px solid #00e676;
}

.type-other {
    color: #b3b3b3;
    border: 1px solid #b3b3b3;
}