/* Colors */
:root {
    --primary-dark: #0f0f1a;
    --secondary-dark: #1a1a2e;
    --accent-purple: #4a1a74;
    --light-purple: #8400ff;
    --accent-pink: #ff1493;
    --accent-green: #00ff9d;
    --text-light: #e6e6fa;
    --text-dim: #b0b0c0;
}

body {
    font-family: Noto Sans, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

a {
    color: var(--text-light);
}

a:hover.text-link {
    color: var(--accent-pink);
}



.navbar {
    background-color: rgba(10, 10, 20, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-logo {
    padding-right: 7px;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--accent-purple), var(--light-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 3px;
}

.nav-link {
    color: var(--text-light) !important;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-pink) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.lead {
    font-family: 'Faculty Glyphic', serif;
    font-style: italic;
}

header{
    margin-top: 70px;
}

.hero {
    min-height: 100vh;
    background: radial-gradient(circle at center, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero section */
.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent-purple), var(--light-purple), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-custom {
    background: linear-gradient(45deg, var(--accent-purple), var(--light-purple));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

.btn-outline-custom {
    border: 2px solid var(--light-purple);
    color: var(--light-purple);
    background: transparent;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--light-purple);
    color: white;
}

.section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, var(--accent-purple), var(--light-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Team */
.team-member {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-member:hover .team-img {
    transform: scale(1.1);
    border-color: var(--accent-purple);
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--light-purple);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.team-role {
    color: var(--light-purple);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

.social-icons-large a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-purple);
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons-large a:hover {
    background-color: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

.social-text a {
    color: var(--text-light);
    text-decoration: none;
    text-decoration: none;
}

.social-text a:hover {
    color: var(--accent-pink);
    text-decoration: none;
}

.game-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backface-visibility: hidden;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.game-content {
    padding: 25px;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.game-desc h3 {
    font-family: 'Faculty Glyphic', serif;
}

.game-text {
    color: var(--text-dim);
    margin-bottom: 20px;
}

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

.game-tag {
    background-color: var(--accent-purple);
    padding: 5px 15px;
    border-radius: 50px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: 600;
}

.game-platform {
    background-color: var(--text-dim);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 50px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: 600;
}

.game-date {
    color: var(--text-dim);
    padding: 5px 15px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Game Page */
.game-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

iframe {
    width: 100%;
    border: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#release-info img {
    max-width: 100%;
    height: auto;
}

/* Testimonials */
.testimonial {
    background-color: rgba(45, 62, 80, 0.3);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--light-purple);
    font-family: Domine, serif;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0;
}

.author-title {
    color: var(--secondary);
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

.form-label {
    color: var(--text-dim);
    font-weight: 500;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-purple), var(--light-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.contact-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-text p {
    color: var(--text-dim);
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-purple), var(--light-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-text {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.footer-links h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.footer-social a:hover {
    background-color: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    margin-top: 50px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--light-purple);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-pink);
    transform: translateY(-3px);
}

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

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

/* Toast notification */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    border-left: 4px solid var(--accent-purple);
}

/* Particles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Loading animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(74, 26, 116, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-purple);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Modal customization */
.modal-content {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--light-purple);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-custom, .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

#gameModalImages img{
    margin-bottom: 20px;
}

/* FIXME: Custom shit to cleanup later (rough bugfixes in current layout) */
i.footer-icons {
    margin-left: 13px;
}