/* Variables - Style Rainbow Six Siege */
:root {
    /* Couleurs principales */
    --primary: #ff4655; /* Rouge R6 */
    --primary-dark: #cc2b38;
    --secondary: #006CFF; /* Bleu R6 */
    --accent: #ffb900;
    --dark: #191919; /* Presque noir */
    --light: #f1f1f1;
    --gray: #717171;
    --bg-dark: #0a0a0a; /* Fond très sombre */
    --success: #35b77c;
    --warning: #ffb900;
    --danger: #ff4655;
    
    /* Typographie */
    --font-main: 'Rajdhani', 'Poppins', sans-serif; /* Police plus militaire */
    
    /* Espacement */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Bordures et ombres */
    --border-radius-sm: 0;
    --border-radius-md: 0;
    --border-radius-lg: 0;
    --box-shadow: 0 5px 15px rgba(255, 70, 85, 0.15);
    --box-shadow-hover: 0 8px 25px rgba(255, 70, 85, 0.25);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Conteneurs et grilles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hexagon-pattern.png');
    background-size: 200px;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Ajout du logo en arrière-plan des titres de section */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    padding: 20px 0;
}

.section-header::before {
    display: none;
}

.section-header h2, .section-header p {
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 70, 85, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 108, 255, 0.3);
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 108, 255, 0.25);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 70, 85, 0.2);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 5% 60px;
    background-color: var(--bg-dark);
    overflow: hidden;
    z-index: 1;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.hero:after {
    display: none;
}

/* Logo unique au-dessus du texte principal */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.hero-content::before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}



.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--light);
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--spacing-md);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: var(--dark);
    position: relative;
    margin-top: -80px;
    z-index: 10;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    border: 1px solid rgba(255, 70, 85, 0.3);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-sm);
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Produits avec logo en arrière-plan */
.products {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.products:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hexagon-pattern.png');
    background-size: 200px;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.products:after {
    display: none;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Style amélioré pour les cartes produit */
.product-card {
    background-color: var(--dark);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 70, 85, 0.1);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    max-width: 450px;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 70, 85, 0.3);
}

/* Style amélioré pour les images produit */
.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 70, 85, 0.1);
}

.product-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(25,25,25,1) 0%, rgba(25,25,25,0) 100%);
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Style amélioré pour le badge */
.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: 0;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
    z-index: 2;
    box-shadow: 0 2px 10px rgba(255, 70, 85, 0.3);
}

/* Style amélioré pour les informations produit */
.product-info {
    padding: var(--spacing-md);
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.product-features span {
    background-color: rgba(255, 70, 85, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 2px solid var(--primary);
}

/* Style amélioré pour les prix */
.product-price {
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15) 0%, rgba(255, 70, 85, 0.05) 100%);
    padding: 10px 20px;
    border-radius: 0;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    border-left: 2px solid var(--primary);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(255, 70, 85, 0.15);
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.2) 0%, rgba(255, 70, 85, 0.1) 100%);
}

.product-price .price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 2px;
    font-weight: 500;
    opacity: 0.8;
}

.product-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    position: relative;
    display: inline-block;
}

/* Suppression de l'effet de soulignement sur les prix */
.product-price .price::before {
    display: none;
}

.product-card:hover .product-price .price::before {
    display: none;
}

/* Style amélioré pour les boutons */
.product-card .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(255, 70, 85, 0.2);
}

.product-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 70, 85, 0.3);
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 5%;
    background-color: var(--dark);
    position: relative;
}

.feature-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: var(--bg-dark);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid transparent;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}

.tab-btn:hover,
.tab-btn.active {
    border-bottom: 2px solid var(--primary);
}

.tab-btn.active {
    background-color: rgba(255, 70, 85, 0.1);
}

.tab-content {
    background-color: var(--bg-dark);
    overflow: hidden;
    border: 1px solid rgba(255, 70, 85, 0.1);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.tab-pane {
    display: none;
    padding: var(--spacing-md);
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.feature-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border: 1px solid rgba(255, 70, 85, 0.1);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.feature-text p {
    margin-bottom: var(--spacing-md);
    color: var(--gray);
}

.feature-list li {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-left: 2px solid var(--primary);
    background-color: rgba(255, 70, 85, 0.05);
}

.feature-list li i {
    color: var(--primary);
    margin-right: var(--spacing-xs);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-dark);
    position: relative;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--dark);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 70, 85, 0.1);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 70, 85, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(25,25,25,1) 0%, rgba(35,35,35,1) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.pricing-header:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-price {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-price .period {
    color: var(--gray);
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: var(--spacing-md);
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 70, 85, 0.1);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--gray);
    opacity: 0.7;
}

.pricing-features li.disabled i {
    color: var(--gray);
}

.pricing-card .btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xl) 5%;
    background-color: var(--dark);
    position: relative;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-dark);
    padding: var(--spacing-md);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 70, 85, 0.1);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(255, 70, 85, 0.3);
}

.testimonial-rating {
    margin-bottom: var(--spacing-sm);
}

.testimonial-rating i {
    color: var(--accent);
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--light);
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 70, 85, 0.1);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-family: serif;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    margin-right: var(--spacing-sm);
    object-fit: cover;
    border: 2px solid var(--primary);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-dark);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    background-color: var(--dark);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 70, 85, 0.1);
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.faq-item:hover {
    border-color: rgba(255, 70, 85, 0.3);
}

.faq-question {
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    display: none;
    color: var(--gray);
}

.faq-item.active {
    border-color: rgba(255, 70, 85, 0.3);
    background-color: rgba(255, 70, 85, 0.03);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* CTA Section */
.cta {
    padding: var(--spacing-xl) 5%;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.8) 0%, rgba(204, 43, 56, 0.8) 100%), url('../img/r6-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    position: relative;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hexagon-pattern.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: var(--spacing-xl) 5% var(--spacing-md);
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 50%, var(--primary) 100%);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto var(--spacing-lg);
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: var(--spacing-md);
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-logo p {
    margin-top: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    gap: var(--spacing-md);
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: var(--spacing-md);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
    position: relative;
    padding-left: var(--spacing-sm);
    transition: all 0.3s ease;
}

.footer-column ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: calc(var(--spacing-sm) + 5px);
}

.footer-column ul li a:hover:before {
    opacity: 1;
}

.contact-info li {
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: var(--spacing-xs);
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px) rotate(45deg);
}

.social-links a i {
    transform: rotate(-45deg);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .feature-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: white;
        transition: all 0.5s ease;
        gap: var(--spacing-md);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
} 

.discord-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff4655;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(255, 70, 85, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.discord-btn i {
    color: white;
    font-size: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.discord-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.7);
    background-color: #ff2a3c;
} 