@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;700&display=swap');

:root {
    --bg-color: #0a0a0b;
    --bg-accent: #121214;
    --card-bg: rgba(18, 18, 20, 0.8);
    --accent-color: #ff6600; /* Rachad Orange */
    --accent-glow: rgba(255, 102, 0, 0.4);
    --secondary-color: #ff9933; /* Lighter Orange */
    --text-color: #e0e0e0;
    --gray-muted: #666666;
    --radius-lg: 30px;
    --radius-md: 20px;
}

body {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Dynamic Background Particles Effect */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.03) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.landing-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HERO SECTION - Animated Gradient */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1c 100%);
    margin-bottom: -5vh;
    padding: 100px 0; /* Padding équilibré */
}

.hero-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-box {
    display: flex;
    align-items: center;
    gap: 20px; /* Réduit l'espace avec le logo */
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero-logo {
    width: 250px; /* Légèrement réduit pour l'équilibre */
    height: auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem); /* Taille réduite de moitié environ */
    margin: 0;
    line-height: 1;
    background: linear-gradient(180deg, #fff 40%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    from { filter: drop-shadow(0 0 10px var(--accent-glow)); }
    to { filter: drop-shadow(0 0 30px var(--accent-glow)); }
}

.subtitle {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    color: var(--text-color);
    letter-spacing: 10px;
    font-weight: 700;
    opacity: 0.9;
}

/* CTA BUTTONS - Dynamic */
.gta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: #fff;
    font-family: 'Bebas Neue';
    font-size: 1.8rem;
    text-decoration: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.gta-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    left: -100%;
}

.gta-btn:hover::after {
    left: 100%;
}

.gta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: #000;
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.5);
}

/* Social Share */
.social-share-container {
    margin-top: 40px;
    opacity: 0.8;
}

.social-share-container p {
    font-family: 'Bebas Neue';
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.share-btn {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue';
    font-size: 1rem;
    transition: 0.3s;
}

.share-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(255, 102, 0, 0.1);
}

/* SECTIONS */
section {
    padding: 60px 0;
    position: relative;
}

h2 {
    font-size: 4rem;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 0px #000;
}

/* Grid Layouts */
.pitch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-flex {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-flex > div {
    flex: 1;
}

.main-vision {
    flex: 1.5 !important;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 102, 0, 0.1);
    padding: 3rem; /* Légère réduction */
    border-radius: var(--radius-lg);
    transition: 0.4s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.glass-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Expertise Tags */
.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expertise-tag {
    background: var(--accent-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-family: 'Bebas Neue';
    font-size: 1.2rem;
    display: inline-block;
    width: fit-content;
    margin-bottom: -5px;
}

.expertise-grid li {
    list-style: none;
    font-weight: 500;
    color: var(--text-color);
    padding-left: 10px;
    border-left: 2px solid var(--accent-color);
}

/* Video Showcase */
.video-showcase {
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
    z-index: 5;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Features Refound */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header p {
    font-size: 1.5rem;
    color: var(--gray-muted);
    letter-spacing: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: #121214;
    border-radius: var(--radius-md);
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.03);
    transition: 0.4s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.feature-item h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.feature-item:hover::before {
    transform: translateX(100%);
}

.feature-item:hover {
    background: #000;
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.countdown-container {
    margin: 60px 0;
    background: #121214;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--accent-color);
    box-shadow: inset 0 0 20px rgba(255, 102, 0, 0.1);
}

.timer-display {
    font-family: 'Bebas Neue';
    font-size: 7rem;
    line-height: 1;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.timer-labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--gray-muted);
    font-weight: 700;
    margin-top: 10px;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: #121214;
    border-radius: var(--radius-md);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.03);
    transition: 0.4s;
    text-align: center;
}

.feature-item:hover {
    background: #000;
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* Registration Form Pill */
.registration-form form {
    background: #1a1a1c;
    padding: 8px;
    border-radius: 80px;
    border: 1px solid var(--accent-color);
    display: flex;
    max-width: 650px;
    margin: 40px auto;
}

.registration-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 40px;
    font-size: 1.2rem;
    font-family: 'Rajdhani';
    color: #fff;
    outline: none;
}

.form-notification {
    margin-top: 20px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Admin Styles */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.admin-header h3 { margin: 0; }

.admin-actions {
    display: flex;
    gap: 15px;
}

.admin-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.2);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #fff;
    font-family: 'Rajdhani';
    outline: none;
}

.admin-input:focus {
    border-color: var(--accent-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    color: var(--accent-color);
    padding: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

footer {
    padding: 80px 0;
    text-align: center;
    color: var(--gray-muted);
    border-top: 1px solid #1a1a1c;
}

@media (max-width: 1024px) {
    .about-flex { flex-direction: column; }
    .feature-grid { grid-template-columns: 1fr; }
}
