@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600;700&display=swap');

:root {
    --primary-green: #4CAF50;
    --dark-green: #388E3C;
    --yellow-accent: #FFEB3B;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --card-bg: #FFFFFF;
    --light-bg: #E8F5E9;
    --shadow-color: rgba(0, 0, 0, 0.15);
    --section-bg: rgba(0, 50, 0, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Jost", sans-serif;
    color: var(--light-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #006400 0%, #004d00 100%);
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(4, 62, 4, 0.515);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow-accent);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    z-index: 1001;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-menu li a:hover,
.navbar-menu li a.active { 
    color: var(--dark-text);
    background: var(--yellow-accent);
    border: 2px solid var(--yellow-accent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Navbar Toggle */
.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    z-index: 1001;
    padding: 0;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: var(--yellow-accent);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%; /* Changed from 100vw to 100% for full width */
        background: rgba(0, 50, 0, 0.98);
        backdrop-filter: blur(15px);
        padding: 80px 2rem 2rem;
        z-index: 999;
        margin: 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease-in-out;
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-menu li {
        width: 100%;
        margin: 0;
    }

    .navbar-menu li a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        margin: 5px 0;
        text-align: center;
        border-radius: 8px;
        font-size: 1.1rem;
    }

    /* Hamburger animation */
    .navbar-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
    
    .navbar-menu {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Add this after the navbar styles */
main {
    padding-top: 70px; /* This matches the navbar height */
}

/* Section Styling */
.section {
    padding: 3rem 2rem;
    background: var(--section-bg);
    margin: 2rem auto;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    color: var(--light-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.section h1, .section h2 {
    text-align: center;
    color: var(--yellow-accent);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light-text);
    opacity: 0.9;
}

/* Interview Container */
.interview-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Mode Selection */
.mode-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mode-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: "Jost", sans-serif;
}

.mode-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mode-btn.active {
    background: var(--yellow-accent);
    color: var(--dark-text);
    border-color: var(--yellow-accent);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow-accent), var(--primary-green));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 5px;
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: var(--light-text);
}

/* Interview Area */
.interview-area {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.interview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.round-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-accent);
}

.timer {
    font-size: 1.2rem;
    font-weight: bold;
    background: var(--yellow-accent);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Question Area */
.question-area {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--yellow-accent);
}

.question-text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--light-text);
}

/* Response Area */
.response-area {
    margin-bottom: 1.5rem;
}

.speech-controls {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.record-btn {
    background: var(--primary-green);
    color: var(--light-text);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Jost", sans-serif;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.record-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.record-btn.recording {
    background: #e74c3c;
    animation: pulse 1.5s infinite;
}

.recording-status {
    font-style: italic;
    color: var(--light-text);
    opacity: 0.8;
}

.transcript-display {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 120px;
    background: rgba(0, 0, 0, 0.2);
}

.transcript-text {
    line-height: 1.6;
    color: var(--light-text);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    font-family: "Jost", sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.next-btn {
    background: var(--primary-green);
    color: var(--light-text);
}

.next-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.feedback-btn {
    background: var(--yellow-accent);
    color: var(--dark-text);
}

.feedback-btn:hover {
    background: #ffe02e;
    transform: translateY(-2px);
}

/* Feedback Area */
.feedback-area {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-area.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.feedback-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 1rem;
    text-align: center;
}

.feedback-criteria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.criterion {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.criterion-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.criterion-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--yellow-accent);
}

.feedback-text {
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--yellow-accent);
    color: var(--light-text);
}

/* Interview Complete */
.interview-complete {
    text-align: center;
    padding: 2rem;
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.interview-complete.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.complete-title {
    font-size: 2rem;
    color: var(--yellow-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.restart-btn {
    background: var(--primary-green);
    color: var(--light-text);
    margin-top: 1rem;
}

.restart-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer */
.footer {
    background: rgba(0, 30, 0, 0.9);
    padding: 3rem 2rem 1rem;
    margin-top: auto;
    color: var(--light-text);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--yellow-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--yellow-accent);
    padding-left: 5px;
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--yellow-accent);
    color: #006400;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(0, 50, 0, 0.98);
        backdrop-filter: blur(15px);
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        margin: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu li {
        width: 100%;
        margin: 0;
    }

    .navbar-menu li a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        margin: 5px 0;
        text-align: center;
        border-radius: 8px;
        font-size: 1.1rem;
    }

    /* Hamburger animation */
    .navbar-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .section {
        padding: 2rem 1rem;
        margin: 1rem auto;
        width: 98%;
    }
    
    .section h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .interview-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .feedback-criteria {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mode-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .mode-btn {
        width: 100%;
        text-align: center;
    }
    
    .speech-controls {
        justify-content: center;
        text-align: center;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--yellow-accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background: #000 !important;
    }
    
    .section {
        background: #000;
        border: 2px solid var(--yellow-accent);
    }
    
    .navbar {
        background: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
/* ========== RESOURCES PAGE STYLES ========== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--yellow-accent);
}

.resource-category h2 {
    color: var(--yellow-accent);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-category h2 i {
    font-size: 1.2rem;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(0, 0, 0, 0.3);
    border-left-color: var(--yellow-accent);
    transform: translateX(5px);
}

.resource-item h3 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--yellow-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--light-text);
    gap: 0.5rem;
}

/* Question Bank Styles */
.question-bank {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.question-bank h2 {
    color: var(--yellow-accent);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.question-column {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.question-column h3 {
    color: var(--yellow-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.question-column ul {
    list-style: none;
    padding: 0;
}

.question-column li {
    color: var(--light-text);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
}

.question-column li:before {
    content: "•";
    color: var(--yellow-accent);
    position: absolute;
    left: 0;
}

.question-column li:last-child {
    border-bottom: none;
}

.view-more-container {
    text-align: center;
    margin-top: 1.5rem;
}

.view-more-btn {
    background: var(--primary-green);
    color: var(--light-text);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Jost", sans-serif;
}

.view-more-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Responsive Design for Resources */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .questions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resource-category,
    .question-bank {
        padding: 1rem;
    }
    
    .question-column {
        padding: 1rem;
    }
}
/* ========== STAR METHOD PAGE STYLES ========== */
.star-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.star-explanation h2,
.star-example h2 {
    color: var(--yellow-accent);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.star-components {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.star-component {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.star-component:hover {
    transform: translateX(5px);
    border-color: var(--yellow-accent);
}

.star-letter {
    background: var(--yellow-accent);
    color: var(--dark-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.star-content h3 {
    color: var(--yellow-accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.star-content p {
    color: #ccc;
    line-height: 1.5;
}

.example-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-card h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.star-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item h4 {
    color: var(--yellow-accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.breakdown-item p {
    color: #ccc;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

.star-practice {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.star-practice h2 {
    color: var(--yellow-accent);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.star-practice > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
}

.practice-area {
    max-width: 800px;
    margin: 0 auto;
}

.question-selector {
    margin-bottom: 2rem;
}

.question-selector select {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--light-text);
    font-family: "Jost", sans-serif;
    font-size: 1rem;
}

.question-selector select:focus {
    outline: none;
    border-color: var(--yellow-accent);
}

.star-worksheet {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.worksheet-section label {
    display: block;
    color: var(--yellow-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.worksheet-section textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--light-text);
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    min-height: 100px;
    resize: vertical;
    transition: all 0.3s ease;
}

.worksheet-section textarea:focus {
    outline: none;
    border-color: var(--yellow-accent);
    background: rgba(0, 0, 0, 0.4);
}

.practice-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.practice-actions .btn {
    min-width: 150px;
}

.star-tips {
    margin-top: 3rem;
}

.star-tips h2 {
    color: var(--yellow-accent);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tip-card i {
    font-size: 2rem;
    color: var(--yellow-accent);
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tip-card p {
    color: #ccc;
    line-height: 1.5;
}

/* Responsive Design for STAR Method */
@media (max-width: 768px) {
    .star-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .practice-actions {
        flex-direction: column;
    }
    
    .practice-actions .btn {
        min-width: 100%;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .star-practice {
        padding: 1rem;
    }
}


