@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,200;10..48,400;10..48,600;10..48,800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    --primary: #FF6D00;
    --secondary: #00D9FF;
    --dark: #0A0E27;
    --darker: #050714;
    --light: #F5F7FA;
    --accent: #FFE082;
    --success: #00E676;
    --danger: #FF1744;
    --warning: #FFA726;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #00D9FF 0%, #FF6D00 100%);
    --shadow-glow: 0 0 30px rgba(255, 109, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Effects */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 109, 0, 0.1) 35px, rgba(255, 109, 0, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 217, 255, 0.1) 35px, rgba(0, 217, 255, 0.1) 70px);
    z-index: -2;
}

.floating-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: float 25s infinite ease-in-out;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Slides Container */
.presentation-container {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.slide {
    width: 95%;
    max-width: 1400px;
    min-height: 85vh;
    padding: 80px 60px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    border: 2px solid rgba(255, 109, 0, 0.3);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.slide.active {
    display: flex;
    animation: slideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

.code-text {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(0, 217, 255, 0.15);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.4);
    color: var(--secondary);
    font-size: 0.9em;
    display: inline-block;
}

/* Slide 1: HTTP Flow */
.http-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    margin: 50px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.entity-box {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid var(--primary);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.entity-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 109, 0, 0.4);
    border-color: var(--secondary);
}

.entity-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(255, 109, 0, 0.3));
}

.entity-label {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.arrow-container {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
}

.arrow {
    width: 100%;
    height: 70px;
    position: relative;
    opacity: 0;
}

.arrow.show {
    animation: arrowSlide 1s forwards;
}

@keyframes arrowSlide {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.arrow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 45px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary));
    border-radius: 2px;
}

.arrow-head {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid var(--primary);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

.arrow.reverse .arrow-line {
    background: linear-gradient(90deg, var(--secondary), transparent);
    left: 45px;
    right: 0;
}

.arrow.reverse .arrow-head {
    left: 0;
    right: auto;
    border-left: none;
    border-right: 25px solid var(--secondary);
}

.arrow-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Slide 2: HTTP Verbs */
.verbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 50px 0;
}

.verb-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.verb-card::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;
}

.verb-card:hover::before {
    left: 100%;
}

.verb-card.show {
    opacity: 1;
    transform: translateY(0);
}

.verb-card:nth-child(1) { animation-delay: 0.1s; border-color: var(--success); }
.verb-card:nth-child(2) { animation-delay: 0.2s; border-color: var(--secondary); }
.verb-card:nth-child(3) { animation-delay: 0.3s; border-color: var(--warning); }
.verb-card:nth-child(4) { animation-delay: 0.4s; border-color: var(--danger); }

.verb-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.verb-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.verb-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.verb-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.verb-card:nth-child(1) .verb-name { color: var(--success); }
.verb-card:nth-child(2) .verb-name { color: var(--secondary); }
.verb-card:nth-child(3) .verb-name { color: var(--warning); }
.verb-card:nth-child(4) .verb-name { color: var(--danger); }

/* Slide 3: Credentials */
.credentials-split {
    display: flex;
    gap: 50px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.cred-section {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    border: 2px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cred-section:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(255, 109, 0, 0.3);
}

.cred-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary);
}

.cred-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(255, 109, 0, 0.3));
}

.cred-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.warning-box {
    background: rgba(255, 23, 68, 0.15);
    border: 2px solid var(--danger);
    border-radius: 20px;
    padding: 25px;
    margin-top: 50px;
    animation: pulse 2.5s infinite;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(255, 23, 68, 0.4); }
}

.warning-text {
    font-size: 1.3rem;
    color: var(--danger);
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}

/* Slide 4: Auth Types */
.auth-list {
    width: 100%;
    max-width: 900px;
    margin: 50px 0;
}

.auth-item {
    background: rgba(255, 255, 255, 0.08);
    border-left: 5px solid var(--primary);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateX(-40px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.auth-item.show {
    opacity: 1;
    transform: translateX(0);
}

.auth-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.2);
}

.auth-item:nth-child(1) { animation-delay: 0.1s; }
.auth-item:nth-child(2) { animation-delay: 0.2s; }
.auth-item:nth-child(3) { animation-delay: 0.3s; }

.auth-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.auth-item p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
}

.auth-example {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    color: var(--accent);
    border: 1px solid rgba(255, 224, 130, 0.2);
    font-size: 0.95rem;
}

/* Slide 5: Data Flow */
.pipeline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 50px 0;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.pipe-section {
    width: 450px;
    height: 120px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.data-ball {
    width: 35px;
    height: 35px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 42.5px;
    animation: flowThrough 3s infinite linear;
    box-shadow: 0 5px 15px rgba(255, 224, 130, 0.5);
}

@keyframes flowThrough {
    0% { left: -35px; }
    100% { left: 485px; }
}

.data-ball:nth-child(2) { animation-delay: 1s; }
.data-ball:nth-child(3) { animation-delay: 2s; }

.tank {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--secondary);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.tank:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

/* Quiz Section */
.quiz-container {
    width: 100%;
    max-width: 900px;
    margin: 50px 0;
}

.quiz-question {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 109, 0, 0.2);
}

.quiz-question.show {
    opacity: 1;
    transform: translateY(0);
    animation: slideIn 0.6s ease;
}

.question-text {
    font-size: 1.6rem;
    margin-bottom: 35px;
    color: var(--light);
    line-height: 1.7;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    padding: 25px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-align: left;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
    border-color: var(--primary);
}

.quiz-option.correct {
    background: rgba(0, 230, 118, 0.25);
    border-color: var(--success);
    animation: correctPulse 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
}

.quiz-option.incorrect {
    background: rgba(255, 23, 68, 0.25);
    border-color: var(--danger);
    animation: shake 0.6s ease;
}

@keyframes correctPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-15px); }
    75% { transform: translateX(15px); }
}

/* Navigation */
.navigation {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 100;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    padding: 18px 35px;
    background: rgba(255, 109, 0, 0.25);
    border: 2px solid var(--primary);
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Bricolage Grotesque', sans-serif;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover:not(:disabled) {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.5);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-3);
    transition: width 0.6s ease;
    box-shadow: 0 0 15px rgba(255, 109, 0, 0.6);
}

/* Slide Counter */
.slide-counter {
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255, 109, 0, 0.15);
    padding: 12px 25px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Special Effects */
.glow-text {
    animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        text-shadow: 0 0 15px rgba(255, 109, 0, 0.5),
                     0 0 25px rgba(0, 217, 255, 0.3);
    }
    to { 
        text-shadow: 0 0 25px rgba(255, 109, 0, 0.8),
                     0 0 40px rgba(255, 109, 0, 0.6),
                     0 0 50px rgba(0, 217, 255, 0.4);
    }
}

/* Info Boxes */
.info-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.info-box strong {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .slide {
        padding: 60px 40px;
    }
    
    .http-flow {
        flex-direction: column;
    }
    
    .arrow-container {
        width: 100%;
        min-width: auto;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .arrow.reverse {
        transform: rotate(-90deg);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
    
    .slide {
        padding: 40px 30px;
        width: 98%;
        min-height: auto;
        max-height: 90vh;
    }
    
    .verbs-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .credentials-split { 
        flex-direction: column;
        gap: 30px;
    }
    
    .cred-section {
        min-width: 100%;
    }
    
    .nav-btn { 
        padding: 12px 25px; 
        font-size: 1rem;
    }
    
    .slide-counter {
        top: 20px;
        right: 20px;
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .entity-box {
        width: 150px;
        height: 150px;
    }
    
    .entity-icon {
        font-size: 3rem;
    }
    
    .pipe-section {
        width: 100%;
        max-width: 350px;
    }
    
    .tank {
        width: 140px;
        height: 140px;
        font-size: 1.1rem;
    }
    
    .question-text {
        font-size: 1.3rem;
    }
    
    .quiz-option {
        font-size: 1.1rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .verbs-grid {
        grid-template-columns: 1fr;
    }
    
    .navigation {
        bottom: 20px;
        gap: 15px;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Scrollbar Styling */
.slide::-webkit-scrollbar {
    width: 8px;
}

.slide::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.slide::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.slide::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Code Blocks */
.code-block {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    overflow-x: auto;
    position: relative;
}

.code-block pre {
    margin: 0;
    color: var(--accent);
}

.code-block .code-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--secondary);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

/* Example Cards */
.example-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.example-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.example-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.example-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Database Types */
.db-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1100px;
    margin: 40px 0;
}

.db-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
}

.db-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.3);
}

.db-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.db-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.db-type {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.db-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

.db-examples {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--accent);
}

/* Quiz Success Message */
.quiz-success {
    background: rgba(0, 230, 118, 0.15);
    border: 3px solid var(--success);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    margin: 40px 0;
    animation: successPulse 1s ease;
    box-shadow: 0 20px 60px rgba(0, 230, 118, 0.3);
}

@keyframes successPulse {
    0% { transform: scale(0.9); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.quiz-success h2 {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 20px;
}

.quiz-success p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 15px;
}

.quiz-success .goat-emoji {
    font-size: 4rem;
    display: block;
    margin: 20px 0;
    animation: bounce 1s infinite;
}

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

/* Auth Detail Slide */
.auth-detail {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    margin: 30px 0;
    border: 2px solid var(--primary);
}

.auth-detail-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-detail-icon {
    font-size: 2.5rem;
}

.auth-detail-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

.auth-detail-when {
    background: rgba(0, 217, 255, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.auth-detail-when strong {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Danger Box */
.danger-box {
    background: rgba(255, 23, 68, 0.15);
    border: 3px solid var(--danger);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    animation: dangerPulse 2s infinite;
}

@keyframes dangerPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 23, 68, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 23, 68, 0.6); }
}

.danger-box h3 {
    color: var(--danger);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.danger-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Security Box */
.security-box {
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid var(--success);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}

.security-box h3 {
    color: var(--success);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.security-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Tool Examples */
.tool-example {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.tool-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.tool-content {
    flex: 1;
}

.tool-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.tool-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

