@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
/* Classe pour les titres secondaires plus petits et en italique */
.titre-bar {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.7em;
}

/* h2.titre-bar blanc sans dégradé */
h2.titre-bar {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    animation: none !important;
}
html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0c;
    color: #e8e9ed;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Fond global avec grille animée */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -2;
    pointer-events: none;
}

/* Particules de fond global */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 90%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
    animation: float 8s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation dégradé aqua pour les titres */
@keyframes aquaGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} 


header {
    background: rgba(24, 24, 27, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 2.5rem 2rem 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #2a2a2f;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.1);
    position: relative;
    animation: fadeIn 0.9s cubic-bezier(.4,2,.6,1);
    overflow: hidden;
    min-height: 120px;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
}

/* Section Hero */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0c;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
    animation: float 8s ease-in-out infinite alternate;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
    color: #ffffff;
}

.hero-highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Animations */
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

main {
    max-width: 1200px;
    margin: 3rem auto;
    background: transparent;
    border-radius: 20px;
    box-shadow: none;
    padding: 2rem 1rem;
    border: none;
    animation: fadeInUp 1.1s cubic-bezier(.4,2,.6,1);
    flex: 1 0 auto;
}

section {
    margin-bottom: 2rem;
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

h1 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

h3 {
    font-size: 1.4rem;
    color: #f1f1f3;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

nav.component-nav ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

nav.component-nav ul li {
    margin: 0;
}

nav.component-nav ul li a {
    display: block;
    padding: 0.7rem 1.3rem;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 11px;
    text-decoration: none;
    font-size: 1.01rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.2);
    border: 1px solid transparent;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    outline: none;
}

nav.component-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    pointer-events: none;
    border-radius: 11px;
    transition: opacity 0.22s;
    z-index: 1;
}

nav.component-nav ul li a:hover::before {
    opacity: 1;
}

nav.component-nav ul li a:hover, nav.component-nav ul li a:focus {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 18px 0 rgba(37, 99, 235, 0.3);
    border: 1px solid #1d4ed8;
    outline: none;
    z-index: 2;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

input, select, button {
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #3a3a3f;
    font-size: 1rem;
    background: #27272a;
    color: #e8e9ed;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

input:focus, select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

button {
    background: #3b82f6;
    color: #ffffff;
    border: 1px solid #3b82f6;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

button:hover::before {
    left: 100%;
}

button:hover {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.build {
    background: #1e1e23;
    border: 1px solid #2a2a2f;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.build:hover {
    border: 1px solid #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.build h3 {
    margin-bottom: 0.5rem;
    color: #f1f1f3;
}

ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

a {
    color: #3b82f6;
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.4);
    transition: color 0.2s, text-decoration-color 0.2s;
}

a:hover {
    color: #2563eb;
    text-decoration-color: #2563eb;
}

/* Bouton retour à l'accueil avec flèche animée, gros et en haut à gauche */
.back-home-wrapper {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
}

a.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.04rem;
    text-decoration: none;
    background: #3b82f6;
    padding: 0.48em 1.1em 0.48em 0.85em;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    border: 1px solid transparent;
    transition: all 0.18s ease;
    position: relative;
    overflow: hidden;
}

a.back-home .arrow {
    display: inline-block;
    font-size: 1.18em;
    margin-right: 0.18em;
    transition: transform 0.22s ease;
    color: #ffffff;
}

a.back-home:hover, a.back-home:focus {
    background: #2563eb;
    color: #fff;
    border: 1px solid #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
    outline: none;
}

a.back-home:hover .arrow, a.back-home:focus .arrow {
    transform: translateX(-3px);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
    background: #18181b;
}
::-webkit-scrollbar-thumb {
    background: #3a3a3f;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4a4a4f;
}

.cpu-bubbles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cpu-bubble {
    display: flex;
    align-items: flex-start;
    background: #1e1e23;
    border: 1px solid #2a2a2f;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 2rem;
    gap: 2rem;
    animation: fadeInUp 1.1s cubic-bezier(.4,2,.6,1);
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.cpu-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 1px solid #3b82f6;
}

.cpu-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
}

.cpu-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    background: #000000;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cpu-img:hover {
    transform: scale(1.05);
}

.cpu-info {
    flex: 1;
    min-width: 0;
}

.cpu-info h2 {
    margin-top: 0;
    margin-bottom: 0.7em;
    font-size: 1.3em;
    font-weight: 700;
}

.cpu-info h2 a {
    color: #f1f1f3;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}

.cpu-info h2 a:hover {
    color: #fff;
    text-decoration: underline;
}

.cpu-info ul {
    margin: 0.5em 0 0 0;
    padding-left: 1.2em;
    color: #d1d5db;
    font-size: 1.05em;
}

.bubble, .bubble-page {
    background: #1e1e23;
    border: 1px solid #2a2a2f;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.1s cubic-bezier(.4,2,.6,1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 1.13rem;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.bubble::before, .bubble-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
}

.bubble:hover, .bubble-page:hover {
    transform: translateY(-2px);
    border: 1px solid #3b82f6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #1e1e23;
}

.bubble h2, .bubble-page h2 {
    margin-top: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
    max-width: calc(100% - 90px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.bubble ul, .bubble ol, .bubble-page ul, .bubble-page ol {
    color: #d1d5db;
    font-size: 1.08rem;
    margin: 0.5rem 0 0 1.2rem;
    text-align: left;
}

.bubble p, .bubble-page p {
    margin: 0.5rem 0 0 0;
    color: #d1d5db;
    text-align: left;
}

.bubble-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3.5rem;
    margin-bottom: 2rem;
}

.bubble-grid-budget {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 3.5rem;
    margin-bottom: 2rem;
}

.bubble-grid .bubble {
    margin-bottom: 0;
}

.bubble-grid-budget .bubble {
    margin-bottom: 0;
}


/* Pour les pages autres que l'accueil */
.page-content {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

.mini-hr {
    border: none;
    height: 2px;
    width: 500px;
    margin: 18px 0 18px 0;
    background: #3b82f6;
    opacity: 0.6;
    border-radius: 2px;
}
 
.mini-hr-bis {
    border: none;
    height: 2px;
    width: 300px;
    margin: 18px 0 18px 0;
    background: #3b82f6;
    opacity: 0.6;
    border-radius: 2px;
}

@keyframes mini-hr-gradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 700px) {
    header {
        padding: 4rem 1rem 5rem 1rem !important;
        min-height: 180px !important;
    }
    
    header h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    .titre-bar {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    
    header p {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.5 !important;
    }
    
    main {
        padding: 1.5rem 1rem !important;
        margin: 2rem auto !important;
    }
    
    .bubble, .bubble-page {
        padding: 1.8rem 1.5rem !important;
        margin-bottom: 2rem !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
     
    /* CPU bubbles en colonne complète */
    .cpu-bubbles {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 1rem !important;
        gap: 2rem !important;
    }
    
    .cpu-bubble {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Images CPU repositionnées */
    .cpu-img {
        width: 100% !important;
        height: 160px !important;
        margin-bottom: 1rem !important;
        object-fit: contain !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
    }
    
    /* Corrections pour les images en position absolue */
    .bubble[style*="padding-right"] {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    
    .cpu-img[style*="position:absolute"] {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        max-width: 200px !important;
        margin: 0 auto 1rem auto !important;
        display: block !important;
    }
    
    /* Espacement des textes pour éviter superposition */
    h2 {
        margin-top: 1.5rem !important;
        margin-bottom: 1rem !important;
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        margin-top: 1.2rem !important;
        margin-bottom: 0.8rem !important;
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }
       
    ul {
        padding-left: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    li {
        margin-bottom: 0.7rem !important;
        line-height: 1.5 !important;
    }
    
    .mini-hr {
        margin: 1.5rem 0 !important;
        height: 2px !important;
    }
    
    .back-home-wrapper {
        top: 1rem;
        left: 1rem;
    }
    
    a.back-home {
        font-size: 1rem;
        padding: 0.5em 1em 0.5em 0.8em;
    }
    
    .site-footer {
        padding: 2rem 1rem 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .footer-links {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        padding: 0.4em 0.8em;
        font-size: 0.95rem;
    }
    
    .footer-social {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-copy {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* Règles spécifiques pour la page overclocking sur mobile */
@media (max-width: 700px) {
    .minimal header {
        padding: 5rem 1rem 6rem 1rem !important;
        min-height: 280px !important;
    }
    
    .minimal h1 {
        font-size: 2.8rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Force l'affichage en colonne pour les pages avec mobile-column */
    .mobile-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .mobile-column .bubble {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 1200px) {
    main {
        max-width: 95vw;
        margin: 2rem auto;
        padding: 2rem 1rem;
    }
    header {
        min-height: 260px !important;
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }
    .bubble-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 3.5rem !important;
        margin-bottom: 2rem !important;
    }

    .bubble-grid-budget {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 3.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .bubble, .bubble-page {
        padding: 2rem 2rem;
    }
}

@media (max-width: 900px) {
    header {
        padding: 2.2rem 1.5rem 3.5rem 1.5rem;
    }
    
    h1 {
        font-size: 2.1rem;
        line-height: 1.3;
    }
    
    nav.component-nav ul {
        gap: 1rem;
        margin: 1rem 0 2rem 0;
    }
    
    nav.component-nav ul li a {
        padding: 0.9rem 1.8rem;
        font-size: 1.08rem;
    }
    
    .bubble-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    .bubble-grid .bubble {
        margin-bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .cpu-bubble {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .cpu-img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

.cpu-bubbles {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem;
        gap: 1.2rem;
    }
    .cpu-img {
        width: 100%;
        height: 160px;
        margin-bottom: 0.7em;
        object-fit: contain;
    }
    .bubble {
        padding: 1.2rem;
    }

.oc-btn {
    display: block;
    margin: 1.8em auto 0 auto;
    padding: 0.9rem 2rem;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.2px;
}
.oc-btn:hover {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.site-footer {
    background: rgba(24, 24, 27, 0.2);
    backdrop-filter: blur(8px);
    color: #d1d5db;
    padding: 3rem 2rem 2rem 2rem;
    border-top: 1px solid #2a2a2f;
    box-shadow: 0 -4px 20px 0 rgba(0,0,0,0.1);
    margin-top: 3rem;
    font-size: 1.08rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
    padding: 0.2em 0.7em;
    border-radius: 6px;
}

.footer-links a:hover {
    color: #fff;
    background: #2a2a2f;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.05em;
}

.discord-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
}

.discord-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.98em;
    color: #9ca3af;
    margin-top: 0.5em;
    text-align: center;
}

.chipset-list {
    display: none;
}

.chipset-list.active {
    display: block;
}

.chipset-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.chipset-btn {
    background: #27272a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 0.3em 1.2em;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: none;
    outline: none;
}

.chipset-btn:hover:not(.active) {
    color: #fff;
    background: #3a3a3f;
}

.chipset-btn.active {
    background: #3b82f6;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    padding: 0.3em 1.2em;
}

.gold-glow {
    color: #FFD700;
    text-shadow: 0 0 8px #FFD700, 0 0 16px #FFA500;
    font-weight: bold;
}

#cpu-options-list {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
    margin-top:0.7em;
    padding-left: 0;
}
#cpu-options-list.open {
    max-height: 300px;
}



/*# sourceMappingURL=style.css.map */

