
/* Block 1 */
.hero-banner {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(13, 17, 35, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #64b5f6, #81c784);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(100, 181, 246, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(129, 199, 132, 0.5));
    }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #0d6efd, #6610f2, #d63384);
    background-size: 200% 200%;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    }
}

.hero-cta-button:hover {
    color: white;
    background-position: 100% 100%;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .hero-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Block 2 */
.neural-gaming-experience {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #000011 100%);
    color: #ffffff;
    overflow: hidden;
}

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

.neural-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 50%, #ffaa00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.neural-subtitle {
    font-size: 1.3rem;
    color: #b8b8ff;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.neural-features {
    margin-bottom: 3rem;
}

.neural-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.neural-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.neural-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.neural-feature-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.neural-feature-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.neural-feature-text p {
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.neural-cta-btn {
    background: linear-gradient(135deg, #ff0080 0%, #00d4ff 100%);
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.neural-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.neural-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
}

.neural-cta-btn:hover::before {
    left: 100%;
}

.neural-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 200px;
    gap: 20px;
    height: 470px;
}

.neural-image {
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.5s ease;
    border: 2px solid rgba(0, 212, 255, 0.3);
    filter: brightness(0.9) saturate(1.2);
}

.neural-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.4);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.neural-image-main {
    grid-column: 1 / 3;
    width: 100%;
    height: 100%;
}

.neural-image-secondary {
    grid-column: 1;
    width: 100%;
    height: 100%;
}

.neural-image-tertiary {
    grid-column: 2;
    width: 100%;
    height: 100%;
}

@media (max-width: 991.98px) {
    .neural-gaming-experience {
        padding: 80px 0;
    }
    
    .neural-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .neural-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .neural-visual-grid {
        margin-top: 3rem;
        height: 400px;
        grid-template-rows: 200px 180px;
    }
}

@media (max-width: 767.98px) {
    .neural-gaming-experience {
        padding: 60px 0;
    }
    
    .neural-title {
        font-size: 2.2rem;
    }
    
    .neural-feature-item {
        padding: 1rem;
    }
    
    .neural-feature-icon {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
    }
    
    .neural-feature-icon i {
        font-size: 1.5rem;
    }
    
    .neural-visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 180px);
        height: auto;
    }
    
    .neural-image-main {
        grid-column: 1;
    }
    
    .neural-cta-btn {
        width: 100%;
        padding: 16px 30px;
    }
}

/* Block 3 */
.quantum-tournaments {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.quantum-tournaments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 162, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.tournaments-header {
    text-align: center;
    margin-bottom: 80px;
}

.tournaments-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00a2ff, #0078ff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 162, 255, 0.5);
}

.tournaments-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.tournament-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 162, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 162, 255, 0.4);
    border-color: rgba(0, 162, 255, 0.6);
}

.tournament-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tournament-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tournament-card:hover .tournament-image {
    transform: scale(1.1);
}

.tournament-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.tournament-badge.upcoming {
    background: linear-gradient(45deg, #ffa726, #ffb74d);
}

.tournament-badge.featured {
    background: linear-gradient(45deg, #9c27b0, #ba68c8);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tournament-info {
    padding: 30px;
}

.tournament-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tournament-details {
    margin-bottom: 25px;
}

.tournament-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #b0b0b0;
}

.tournament-detail i {
    margin-right: 10px;
    color: #00a2ff;
    width: 16px;
}

.tournament-progress {
    margin-bottom: 25px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00a2ff, #0078ff);
    width: 94%;
    border-radius: 10px;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-fill.progress-medium {
    width: 67%;
    background: linear-gradient(90deg, #ffa726, #ff9800);
}

.progress-fill.progress-low {
    width: 23%;
    background: linear-gradient(90deg, #9c27b0, #7b1fa2);
}

@keyframes progressGlow {
    from { box-shadow: 0 0 5px rgba(0, 162, 255, 0.5); }
    to { box-shadow: 0 0 20px rgba(0, 162, 255, 0.8); }
}

.progress-text {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.tournament-btn {
    width: 100%;
    background: linear-gradient(45deg, #00a2ff, #0078ff);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-btn:hover {
    background: linear-gradient(45deg, #0078ff, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.4);
}

.tournaments-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(0, 162, 255, 0.1), rgba(0, 120, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(0, 162, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00a2ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .tournaments-title {
        font-size: 2.5rem;
    }
    
    .tournaments-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .tournaments-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 1 1 45%;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Block 4 */
.neural-order-form {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.neural-order-form::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, #00ffff22 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #ff00ff22 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.order-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.7);
        transform: scale(1.05);
    }
}

.form-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.neural-contact-form {
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ffff;
    z-index: 2;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0 20px 0 55px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
    color: #888888;
}

.input-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-input:focus + .input-label,
.form-input:valid + .input-label {
    opacity: 1;
}

.gaming-options {
    margin-bottom: 40px;
}

.options-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.experience-card {
    position: relative;
}

.experience-radio {
    display: none;
}

.experience-label {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.experience-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00ffff;
    transform: translateY(-5px);
}

.experience-radio:checked + .experience-label {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.experience-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.experience-info h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.experience-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.form-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.feature-item i {
    color: #00ffff;
    font-size: 1.1rem;
}

.submit-btn {
    width: 100%;
    height: 70px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

@media (max-width: 768px) {
    .order-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .form-features {
        flex-direction: column;
        align-items: center;
    }
}
