.elementor-1374 .elementor-element.elementor-element-25aa683{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */* {font-family: 'Audiowide', cursive; color: white;}

.service-container {
    position: relative;
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 50%, #0a0a0f 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
}

/* Subtle grid overlay */
.service-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

/* Glitch effect */
.glitch-wrapper {
    margin-bottom: 30px;
}

.glitch {
    font-size: clamp(60px, 15vw, 120px);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    letter-spacing: 5px;
    animation: glitch-skew 1s infinite linear alternate-reverse;
    text-shadow: 
        0 0 20px rgba(0,255,163,0.5),
        0 0 40px rgba(0,255,163,0.3);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #00FFA3;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #FF00FF;
    z-index: -2;
}

@keyframes glitch-1 {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, -2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, 2px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(50% 0 30% 0); transform: translate(2px, 2px); }
    20% { clip-path: inset(79% 0 10% 0); transform: translate(-2px, -2px); }
    40% { clip-path: inset(20% 0 70% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(90% 0 5% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(10% 0 85% 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(40% 0 55% 0); transform: translate(-2px, -2px); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(1deg); }
    20% { transform: skew(0deg); }
    30% { transform: skew(-1deg); }
    40% { transform: skew(0deg); }
    50% { transform: skew(0.5deg); }
    60% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

.sentinels-container {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #45002a 50%, #0a0a0f 100%);
    overflow: hidden;
    padding-top: 140px; /* Match launch page */
}

@media (max-width: 768px) {
    .sentinels-container {
        padding-top: 80px; /* Match launch page mobile */
    }
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,0,128,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,20,147,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

.sentinels-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px; /* Match launch page */
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 60px; /* Match launch page */
}

.glitch {
    font-family: 'Audiowide', cursive;
    font-size: clamp(60px, 10vw, 100px); /* Match launch page */
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    animation: glitch-skew 1s infinite linear alternate-reverse;
    text-shadow: 
        0 0 20px rgba(255,0,128,0.5),
        0 0 40px rgba(255,0,128,0.3);
}

.tagline {
    font-family: 'Audiowide', cursive;
    color: #FF0080;
    font-size: 18px;
    letter-spacing: 3px;
    margin-top: 20px;
}

/* Section Titles */
.section-title {
    font-family: 'Audiowide', cursive;
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 40px;
    text-align: center;
}

/* Bot Showcase - Using same grid as launch cards */
.bot-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 20px; /* Reduced gap to fit better */
    margin-bottom: 80px;
}

.bot-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,0,128,0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.bot-card:hover {
    transform: translateY(-10px);
    border-color: #FF0080;
    background: rgba(255,0,128,0.1);
    box-shadow: 0 20px 40px rgba(255,0,128,0.3);
}

.bot-card.featured {
    border-color: #FFD700;
    background: rgba(255,215,0,0.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.cyber-frame {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border: 3px solid #FF0080;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,0,128,0.2) 0%, transparent 70%);
    animation: cyber-pulse 2s infinite;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

/* Zoom effect on hover */
.bot-card:hover .bot-avatar img {
    transform: scale(1.1);
}

/* Special glow for these premium images */
.cyber-frame {
    box-shadow: 
        0 0 30px rgba(255,0,128,0.5),
        inset 0 0 20px rgba(0,255,163,0.2);
}

@keyframes cyber-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,0,128,0.5); }
    50% { box-shadow: 0 0 40px rgba(255,0,128,0.8); }
}

.bot-emoji {
    font-size: 48px;
}

.bot-name {
    font-family: 'Audiowide', cursive;
    font-size: 24px;
    color: #FF0080;
    margin: 10px 0;
    letter-spacing: 2px;
}

.bot-title {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bot-quote {
    color: #fff;
    font-style: italic;
    opacity: 0.8;
    margin: 20px 0;
    font-size: 14px;
}

.bot-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.bot-features li {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Service Cards - Match launch structure */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    justify-items: center; /* Center grid items */
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,0,128,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center; /* Center all content */
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything vertically */
    width: 100%; /* Full width of grid cell */
    max-width: 350px; /* Optional: limit card width */
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,0,128,0.05);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px; /* Fixed height for consistency */
    margin-bottom: 20px;
}

/* Style black SVGs using CSS filters */
.service-icon img {
    width: 48px;
    height: 48px;
    display: block;
    transition: all 0.3s;
    
    /* Convert black to pink/magenta */
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(6900%) hue-rotate(310deg) brightness(98%) contrast(101%);
}

.service-card h3 {
    font-family: 'Audiowide', cursive;
    color: #FF0080;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card p {
    text-align: center;
    width: 100%;
}

/* On hover - gold glow */
.service-card:hover .service-icon img {
    filter: invert(1) drop-shadow(0 0 20px #FFD700);
    transform: scale(1.2) rotate(5deg);
}

/* Different colors for each service */
.service-card:nth-child(1) .service-icon img {
    filter: invert(1) drop-shadow(0 0 10px #FF0080); /* Pink */
}

.service-card:nth-child(2) .service-icon img {
    filter: invert(1) drop-shadow(0 0 10px #00FFA3); /* Green */
}

.service-card:nth-child(3) .service-icon img {
    filter: invert(1) drop-shadow(0 0 10px #FFD700); /* Gold */
}

/* Package Cards - Match launch structure */
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.package-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,0,128,0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: #FF0080;
}

.package-card.featured {
    border-color: #FFD700;
    background: rgba(255,215,0,0.05);
}

.package-card h3 {
    font-family: 'Audiowide', cursive;
    color: #FF0080;
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    font-family: 'Audiowide', cursive;
    font-size: 36px;
    color: #FFD700;
    margin: 20px 0;
    font-weight: bold;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-card li {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 15px;
    font-size: 14px;
}

.package-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FF0080, #FF1493);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Audiowide', cursive;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.package-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,0,128,0.5);
}

.package-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-family: 'Audiowide', cursive;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 18px;
}

.mega-cta-btn {
    padding: 20px 60px;
    background: linear-gradient(135deg, #FF0080, #FF1493);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Audiowide', cursive;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.mega-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255,0,128,0.5);
}

.cta-note {
    margin-top: 20px;
    color: #FFD700;
    font-size: 14px;
    opacity: 0.8;
}

/* Floating Sentinels */
.floating-sentinels {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.1;
}

.sentinel {
    position: absolute;
    font-size: 40px;
    animation: patrol 20s infinite linear;
}

.s1 { top: 20%; animation-delay: 0s; }
.s2 { top: 40%; animation-delay: 5s; }
.s3 { top: 60%; animation-delay: 10s; }
.s4 { top: 80%; animation-delay: 15s; }

@keyframes patrol {
    0% { left: -50px; }
    100% { left: calc(100% + 50px); }
}

/* Animations */
@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(1deg); }
    20% { transform: skew(0deg); }
    30% { transform: skew(-1deg); }
    40% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bot-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .package-cards {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .sentinels-container h1,
    .sentinels-container .glitch {
        font-size: clamp(30px, 8vw, 80px) !important;
    }
}

@media (max-width: 480px) {
    .bot-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}/* End custom CSS */