/* Main stylesheet for Team Matrix website */

/* Variables */
:root {
    --matrix-green-bright: #00FF00;
    --matrix-green-medium: #008F11;
    --matrix-green-dark: #003B00;
    --matrix-black: #000000;
    --glow-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    --transition-speed: 0.3s ease;
}

/* Global styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--matrix-black);
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.matrix-font {
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 1px;
}

.matrix-gradient-text {
    background: linear-gradient(to right, var(--matrix-green-bright), var(--matrix-green-medium));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

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

.main-content {
    margin-top: 120px;
    padding-bottom: 60px;
}

/* Button styles */
.btn-matrix {
    background: linear-gradient(to right, var(--matrix-green-medium), var(--matrix-green-dark));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

.btn-matrix:hover {
    background: linear-gradient(to right, var(--matrix-green-bright), var(--matrix-green-medium));
    box-shadow: var(--glow-shadow);
    color: #fff;
    transform: translateY(-2px);
}

/* Section styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--matrix-green-bright), var(--matrix-green-medium));
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header span {
    color: var(--matrix-green-bright);
}

.page-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Character card styles */
.character-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--transition-speed);
    border: 1px solid var(--matrix-green-medium);
    height: 100%;
    margin-bottom: 30px;
}

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

.character-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.character-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.character-info {
    padding: 20px;
}

.character-info h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.character-info .role {
    color: var(--matrix-green-bright);
    font-weight: bold;
    margin-bottom: 5px;
}

.character-info .token {
    color: #ccc;
    font-style: italic;
    margin-bottom: 15px;
}

/* Matrix animated border */
.matrix-animated-border {
    position: relative;
    transition: box-shadow var(--transition-speed);
}

/* Hero detail page styles */
.hero-detail {
    margin-top: 120px;
}

.hero-image {
    text-align: center;
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-info h1 {
    margin-top: 0;
}

.hero-info .role {
    color: var(--matrix-green-bright);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-info .token {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
}

.hero-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-powers {
    margin-bottom: 30px;
}

.hero-powers h3 {
    color: var(--matrix-green-bright);
    margin-bottom: 15px;
}

.hero-powers ul {
    padding-left: 20px;
}

.hero-powers li {
    margin-bottom: 10px;
}

/* Comics page styles */
.comics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.comic-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--transition-speed);
    border: 1px solid var(--matrix-green-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.comic-card-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.comic-card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.comic-card-title {
    margin-top: 0;
    font-size: 1.8rem;
}

.comic-card-title span {
    font-size: 1.2rem;
    opacity: 0.8;
}

.comic-card-description {
    margin-bottom: 15px;
    flex-grow: 1;
}

.comic-card-release {
    color: #ccc;
    font-style: italic;
    margin-bottom: 15px;
}

.comic-card-heroes {
    margin-bottom: 20px;
}

.comic-card-heroes h4 {
    margin-bottom: 10px;
    color: var(--matrix-green-bright);
}

.hero-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.comic-card-hero {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--matrix-green-medium);
    transition: all var(--transition-speed);
}

.comic-card-hero:hover {
    transform: scale(1.1);
    border-color: var(--matrix-green-bright);
    box-shadow: 0 0 10px var(--matrix-green-bright);
}

.read-comic-btn {
    align-self: flex-start;
}

.coming-soon-btn {
    background-color: #333;
    color: #ccc;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

/* Comic detail page styles */
.comic-detail-container {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--matrix-green-medium);
}

.comic-cover {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.release-date {
    color: #ccc;
    font-style: italic;
    margin-bottom: 20px;
}

.comic-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.featured-heroes {
    margin-bottom: 30px;
}

.featured-heroes h4 {
    color: var(--matrix-green-bright);
    margin-bottom: 15px;
}

.hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    width: calc(50% - 10px);
}

.hero-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--matrix-green-medium);
    margin-right: 15px;
}

.hero-item h5 {
    margin: 0 0 5px 0;
    color: var(--matrix-green-bright);
}

.hero-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.full-story {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--matrix-green-dark);
}

footer p {
    margin-bottom: 0;
    opacity: 0.7;
}

/* Hero slider styles */
.hero-slider {
    margin-top: 80px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.swiper-button-next, 
.swiper-button-prev {
    color: var(--matrix-green-bright);
}

.swiper-pagination-bullet {
    background: var(--matrix-green-bright);
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .swiper {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .hero-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 100px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .swiper {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .comics-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .main-content {
        margin-top: 80px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .swiper {
        height: 300px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .comics-grid {
        grid-template-columns: 1fr;
    }
}


/* Hero Binance Referral Styles */
.hero-binance {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #F3BA2F;
    border-radius: 8px;
    text-align: center;
}

.binance-referral-link {
    color: #F3BA2F;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background: rgba(243, 186, 47, 0.1);
}

.binance-referral-link:hover {
    color: #ffffff;
    background: #F3BA2F;
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: 0 0 15px #F3BA2F;
}

.binance-referral-link i {
    font-size: 18px;
    vertical-align: middle;
}


/* Header Logo Alignment Styles */
.social-icons.desktop {
    gap: 5px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 32px;
    line-height: 1;
}

.social-icon:hover {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    transform: scale(1.1);
    text-decoration: none;
}

.binance-logo {
    width: 41px;
    height: 41px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.binance-dropdown .binance-icon:hover .binance-logo {
    filter: brightness(1.2) drop-shadow(0 0 10px #F3BA2F);
    transform: scale(1.1);
}

.language-icon {
    color: #00ff00;
    font-size: 32px;
    line-height: 1;
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-selector-toggle:hover .language-icon {
    color: #00cc00 !important;
    text-shadow: 0 0 10px #00ff00;
    transform: scale(1.1);
}

/* Ensure all header icons have consistent spacing */
.binance-dropdown,
.language-selector {
    margin-left: 5px;
}

.binance-dropdown .binance-icon,
.language-selector-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
}


/* Manus AI Referral Link Styles */
.hero-manus-ai {
    margin-top: 15px;
}

.manus-ai-referral-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #000000, #003300);
    color: #00FF00;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #00FF00;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.manus-ai-referral-link:hover {
    background: linear-gradient(135deg, #003300, #006600);
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    border-color: #00FF00;
}

.manus-ai-referral-link i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile responsive adjustments for Manus AI links */
@media (max-width: 768px) {
    .manus-ai-referral-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

