/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #0c0c0c 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 173, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00adff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #ffffff;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00adff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00adff, #0084cc);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00adff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(0, 173, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #00adff 0%, #0084cc 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #00adff;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00adff, #0084cc);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 173, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00adff;
    border: 2px solid #00adff;
}

.btn-secondary:hover {
    background: #00adff;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0c0c0c;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00adff;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.cyber-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00adff, transparent);
    height: 1px;
    width: 100%;
    animation: scan 3s linear infinite;
}

.grid-line:nth-child(1) { top: 25%; animation-delay: 0s; }
.grid-line:nth-child(2) { top: 50%; animation-delay: 0.7s; }
.grid-line:nth-child(3) { top: 75%; animation-delay: 1.4s; }
.grid-line:nth-child(4) { top: 90%; animation-delay: 2.1s; }

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: #00adff;
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { top: 60%; right: 20%; animation-delay: 1.5s; }
.floating-icons i:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 3s; }
.floating-icons i:nth-child(4) { top: 40%; left: 60%; animation-delay: 4.5s; }

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffffff, #00adff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlights {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.highlight-card h3 {
    color: #00adff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.highlight-card p {
    color: #cccccc;
    line-height: 1.6;
}

.key-info {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
}

.info-card h3 {
    color: #00adff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-card li::before {
    content: '▶';
    color: #00adff;
    position: absolute;
    left: 0;
}

.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 173, 255, 0.1), rgba(0, 132, 204, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 173, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00adff;
    margin-bottom: 15px;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-brand p {
    color: #cccccc;
}

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

.footer-section h4 {
    color: #00adff;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00adff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* Animations */
@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 173, 255, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #00adff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Mission Section */
.mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.mission-statement {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
}

.mission-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-item i {
    font-size: 2.5rem;
    color: #00adff;
    margin-bottom: 15px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0;
}

.value-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.value-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-shield {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

/* Timeline */
.timeline {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00adff, #0084cc);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -30px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.timeline-content h3 {
    color: #00adff;
    margin-bottom: 10px;
}

.timeline-date {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Key Facts */
.key-facts {
    padding: 80px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.fact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.fact-card h3 {
    color: #00adff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.fact-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Organizer Section */
.organizer {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.organizer-content h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #00adff;
    font-size: 2.5rem;
}

.organizer-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.organizer-details h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.location {
    color: #00adff;
    margin-bottom: 20px;
    font-weight: 500;
}

.location i {
    margin-right: 8px;
}

.organizer-details p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00adff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.organizer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

/* Awards Page Styles */
.main-award {
    padding: 80px 0;
}

.award-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.award-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-trophy {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.award-content h2 {
    color: #ffd700;
    font-size: 3rem;
    margin-bottom: 20px;
}

.award-description {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.award-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
}

.benefit-item i {
    color: #00adff;
    font-size: 1.2rem;
}

.award-categories {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.category-card.special {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.category-card.special:hover {
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.category-card.special .category-icon {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.category-card h3 {
    color: #00adff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.category-card.special h3 {
    color: #ffd700;
}

.category-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.criteria h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.criteria ul {
    list-style: none;
    padding-left: 0;
}

.criteria li {
    color: #cccccc;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.criteria li::before {
    content: '▶';
    color: #00adff;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.category-card.special .criteria li::before {
    color: #ffd700;
}

.nomination-process {
    padding: 80px 0;
}

.process-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.process-intro {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.nomination-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.2;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
}

.nomination-form-preview {
    display: flex;
    justify-content: center;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    max-width: 300px;
    width: 100%;
}

.form-card h3 {
    color: #00adff;
    margin-bottom: 10px;
}

.form-card p {
    color: #cccccc;
    margin-bottom: 20px;
    font-style: italic;
}

.form-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.form-card li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.form-card li::before {
    content: '▶';
    color: #00adff;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 500;
}

.judge-panel {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.judge-intro {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.judge-qualities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.quality-item {
    text-align: center;
    padding: 30px 20px;
}

.quality-item i {
    font-size: 3rem;
    color: #00adff;
    margin-bottom: 20px;
}

.quality-item h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.quality-item p {
    color: #cccccc;
    line-height: 1.6;
}

.judge-cta {
    text-align: center;
}

.judge-cta p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.recognition-details {
    padding: 80px 0;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.recognition-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.recognition-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.recognition-item h3 {
    color: #00adff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.recognition-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Get Involved Page Styles */
.quick-actions {
    padding: 80px 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.action-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
    border-color: #00adff;
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

.action-card h3 {
    color: #00adff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.action-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.action-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #00adff;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(0);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.requirements-card,
.deadline-card,
.qualifications-card,
.responsibilities-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.requirements-card h3,
.deadline-card h3,
.qualifications-card h3,
.responsibilities-card h3 {
    color: #00adff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-card ul,
.deadline-card ul,
.qualifications-card ul,
.responsibilities-card ul {
    list-style: none;
}

.requirements-card li,
.deadline-card li,
.qualifications-card li,
.responsibilities-card li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.requirements-card li::before,
.deadline-card li::before,
.qualifications-card li::before,
.responsibilities-card li::before {
    content: '▶';
    color: #00adff;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Form Styles */
.form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-container h3 {
    color: #00adff;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.form-subtitle {
    color: #cccccc;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 173, 255, 0.2);
    padding-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 173, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00adff;
    box-shadow: 0 0 0 2px rgba(0, 173, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-note {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-item:hover {
    color: #ffffff;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #00adff;
}

.checkbox-item a {
    color: #00adff;
    text-decoration: none;
}

.checkbox-item a:hover {
    text-decoration: underline;
}

.char-count {
    color: #999999;
    font-size: 0.8rem;
    float: right;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

.form-note-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-note-card i {
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-note-card div {
    color: #cccccc;
}

/* Judge Application */
.judge-application {
    padding: 80px 0;
}

.judge-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.judge-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Nomination Section */
.nomination-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.nomination-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 173, 255, 0.1), rgba(0, 132, 204, 0.1));
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-info h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-info p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.benefit i {
    color: #00adff;
    font-size: 1.2rem;
    width: 20px;
}

.newsletter-form-container {
    padding: 30px;
}

.newsletter-form-container h3 {
    margin-bottom: 25px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: #00adff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: start;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

.method-content p {
    color: #cccccc;
    margin-bottom: 10px;
}

.method-content a {
    color: #00adff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: #ffffff;
}

.response-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.response-info h3 {
    color: #00adff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.response-info ul {
    list-style: none;
}

.response-info li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.response-info li::before {
    content: '▶';
    color: #00adff;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.organizer-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.organizer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.organizer-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.organizer-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.organizer-title h2 {
    color: #ffffff;
    margin-bottom: 5px;
}

.organizer-title p {
    color: #00adff;
    font-weight: 500;
}

.organizer-details {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.detail-item i {
    color: #00adff;
}

.organizer-description p {
    color: #cccccc;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.faq-item h3 {
    color: #00adff;
    margin-bottom: 15px;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

.faq-item a {
    color: #00adff;
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

.quick-links {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 173, 255, 0.1), rgba(0, 132, 204, 0.1));
    text-align: center;
}

.quick-links h2 {
    color: #00adff;
    margin-bottom: 40px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 173, 255, 0.2);
    border-color: #00adff;
}

.quick-link i {
    font-size: 2rem;
    color: #00adff;
}

.quick-link span {
    font-weight: 500;
}

/* Blog Page Styles */
.featured-post {
    padding: 80px 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.post-category {
    background: linear-gradient(135deg, #00adff, #0084cc);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-date {
    color: #cccccc;
    font-size: 0.9rem;
}

.featured-article h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.featured-article p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.post-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00adff;
    font-size: 0.9rem;
}

.featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.blog-posts {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00adff, #0088cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 173, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 173, 255, 0.1);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card-content {
    position: relative;
    z-index: 2;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-card-category {
    background: linear-gradient(135deg, #00adff, #0088cc);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-date {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #00adff;
}

.blog-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00adff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00adff, #0088cc);
    transition: width 0.3s ease;
}

.blog-card-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.blog-card-link:hover::after {
    width: 100%;
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

.blog-newsletter {
    background: linear-gradient(135deg, rgba(0, 173, 255, 0.1) 0%, rgba(0, 132, 204, 0.05) 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    border-top: 1px solid rgba(0, 173, 255, 0.2);
    border-bottom: 1px solid rgba(0, 173, 255, 0.2);
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 173, 255, 0.1);
}

.newsletter-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.form-inline {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.form-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 173, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-inline input:focus {
    outline: none;
    border-color: #00adff;
    box-shadow: 0 0 0 3px rgba(0, 173, 255, 0.2);
}

.form-inline input::placeholder {
    color: #888;
}

.form-inline button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #00adff, #0088cc);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.form-inline button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 173, 255, 0.3);
}

.blog-categories {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00adff, #0088cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 173, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.15);
}

.category-item:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 173, 255, 0.3);
}

.category-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-item p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-count {
    background: rgba(0, 173, 255, 0.2);
    color: #00adff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Sponsors Page Styles */
.partnership-cta {
    padding: 80px 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
}

.cta-content h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.partnership-graphic {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.sponsorship-tiers {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.tier-card.platinum {
    border-color: rgba(255, 215, 0, 0.5);
}

.tier-card.gold {
    border-color: rgba(255, 165, 0, 0.5);
}

.tier-card.silver {
    border-color: rgba(192, 192, 192, 0.5);
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
}

.tier-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.tier-card.platinum .tier-icon {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.tier-card.gold .tier-icon {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.tier-card.silver .tier-icon {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
}

.tier-header h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.tier-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
}

.tier-benefits ul {
    list-style: none;
    margin-bottom: 25px;
}

.tier-benefits li {
    color: #cccccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tier-benefits i {
    color: #00adff;
}

.tier-cta {
    text-align: center;
}

.current-sponsors {
    padding: 60px 0 40px;
}

.sponsors-intro {
    text-align: center;
    color: #cccccc;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.sponsor-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.sponsor-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.sponsor-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sponsor-tier {
    background: linear-gradient(135deg, #00adff, #0084cc);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.sponsor-tier.platinum-tier {
    background: linear-gradient(135deg, #e6e6fa, #d3d3d3);
    color: #333;
}

.sponsor-tier.gold-tier {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #333;
}

.sponsor-tier.silver-tier {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: #333;
}

.why-partner {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.partner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.partner-info h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.partner-info p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.partner-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00adff;
    margin-bottom: 5px;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-item i {
    color: #00adff;
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-item h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-item p {
    color: #cccccc;
}

.partnership-chart {
    display: flex;
    gap: 20px;
    align-items: end;
    height: 300px;
    justify-content: center;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(to top, #00adff, #0084cc);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
}

.chart-bar span {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.partnership-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

.sponsor-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 173, 255, 0.1), rgba(0, 132, 204, 0.1));
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card h2 {
    color: #00adff;
    margin-bottom: 15px;
}

.contact-card p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: start;
    text-align: left;
}

.contact-item i {
    color: #00adff;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
}

.contact-item a {
    color: #00adff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(12, 12, 12, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* About Page Responsive */
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .organizer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Awards Page Responsive */
    .award-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-trophy {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
    
    .award-content h2 {
        font-size: 2.5rem;
    }
    
    .award-benefits {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nomination-form-preview {
        margin-top: 40px;
    }
    
    .judge-qualities {
        grid-template-columns: 1fr;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    
    /* Get Involved Page Responsive */
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .judge-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .newsletter-info h2 {
        font-size: 2rem;
    }
    
    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .organizer-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .organizer-details {
        justify-content: center;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Blog Page Responsive */
    .featured-article {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .form-inline {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Sponsors Page Responsive */
    .cta-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .partnership-chart {
        height: 200px;
        gap: 15px;
    }
    
    .chart-bar {
        width: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    /* Mobile-specific styles for award categories */
    .award-categories .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-categories {
        padding: 60px 0;
    }
    
    .award-categories .container {
        padding: 0 15px;
    }
    
    .category-card {
        padding: 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .category-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .criteria h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .criteria li {
        font-size: 0.85rem;
        margin-bottom: 4px;
        padding-left: 15px;
    }
    
    /* Judges Page Responsive */
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-stats {
        gap: 30px;
    }
    
    .intro-stats .stat-number {
        font-size: 2rem;
    }
    
    .judges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .judge-card {
        padding: 25px 20px;
    }
    
    .judge-avatar {
        width: 80px;
        height: 80px;
    }
    
    .judge-info h3 {
        font-size: 1.3rem;
    }
    
    .judge-title {
        font-size: 1rem;
    }
    
    .judge-description p {
        font-size: 0.9rem;
    }
    
    .judge-specialties {
        justify-content: center;
    }
    
    .specialty-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-content {
    padding: 80px 0;
}

.terms-document {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 50px;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 173, 255, 0.1);
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.terms-section h2 {
    color: #00adff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

.terms-footer {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
}

.terms-footer h3 {
    color: #00adff;
    margin-bottom: 15px;
}

.terms-footer p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-footer a {
    color: #00adff;
    text-decoration: none;
}

.terms-footer a:hover {
    text-decoration: underline;
}

.terms-footer .terms-note {
    font-size: 0.9rem;
    color: #999999;
    font-style: italic;
    margin-top: 15px;
}

.last-updated {
    text-align: center;
    border-top: 1px solid rgba(0, 173, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.last-updated p {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

/* Judges Page Styles */
.judges-intro {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.intro-stats .stat-item {
    text-align: center;
}

.intro-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00adff;
    margin-bottom: 5px;
}

.intro-stats .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.judges-panel {
    padding: 80px 0;
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.judge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.judge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 173, 255, 0.2);
}

.judge-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.judge-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00adff;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    border: 3px solid #00adff;
}

.judge-info {
    text-align: center;
}

.judge-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.judge-title {
    color: #00adff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.judge-credentials {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.judge-description {
    text-align: left;
    margin-bottom: 20px;
}

.judge-description p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.judge-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.specialty-tag {
    background: rgba(0, 173, 255, 0.2);
    color: #00adff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 173, 255, 0.3);
}

.judge-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.judge-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00adff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border: 1px solid rgba(0, 173, 255, 0.3);
    border-radius: 20px;
    background: rgba(0, 173, 255, 0.1);
}

.judge-links a:hover {
    color: #ffffff;
    background: rgba(0, 173, 255, 0.2);
    border-color: #00adff;
}

.judge-links i {
    font-size: 1rem;
}

.judging-process {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.process-header p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00adff, #0084cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.process-step h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Blog Article Styles */
.article-content {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    max-width: 1200px;
    align-items: start;
}

.article-body {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 173, 255, 0.2);
    min-height: fit-content;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.sidebar-card h3 {
    color: #00adff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 173, 255, 0.3);
    padding-bottom: 10px;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card li {
    color: #cccccc;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.4;
}

.sidebar-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-card li strong {
    color: #00adff;
    font-weight: 600;
}

.sidebar-card a {
    color: #00adff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Post Meta */
.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.post-category {
    background: #00adff;
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-date {
    color: #999999;
    font-size: 0.9rem;
}

/* Judges Preview */
.judges-preview {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.judge-highlight {
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 173, 255, 0.2);
}

.judge-highlight .judge-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 173, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00adff;
    font-size: 2rem;
    flex-shrink: 0;
}

.judge-highlight .judge-info h3 {
    color: #00adff;
    margin-bottom: 5px;
}

.judge-highlight .judge-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.judge-highlight .judge-credentials {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Evaluation Grid */
.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.eval-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 173, 255, 0.2);
    text-align: center;
}

.eval-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 173, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #00adff;
    font-size: 1.5rem;
}

/* Schedule Styles */
.schedule-table {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 173, 255, 0.2);
}

.schedule-header {
    background: rgba(0, 173, 255, 0.2);
    padding: 20px;
    text-align: center;
}

.schedule-header.day-2 {
    background: rgba(255, 215, 0, 0.2);
    margin-top: 20px;
}

.schedule-grid {
    padding: 20px;
}

.schedule-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid transparent;
}

.schedule-item.prep { border-left-color: #4CAF50; }
.schedule-item.briefing { border-left-color: #2196F3; }

/* Blog Content Styles */
.blog-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.blog-intro h2 {
    color: #00adff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-intro p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Blog Stats */
.blog-stats {
    margin: 60px 0;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(0, 173, 255, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00adff;
    margin-bottom: 5px;
    display: block;
}

.stat-item .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Blog CTA */
.blog-cta {
    margin-top: 60px;
}

.cta-content {
    background: rgba(0, 173, 255, 0.1);
    border: 2px solid #00adff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #00adff;
    margin-bottom: 15px;
}

.cta-content p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.blog-grid {
    gap: 1.5rem;
}

.blog-card {
    padding: 1.5rem;
    border-radius: 12px;
}

.blog-card h3 {
    font-size: 1.3rem;
}

.blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.blog-card-category {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
}

.newsletter-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
}

.newsletter-content h2 {
    font-size: 1.5rem;
}

.form-inline {
    flex-direction: column;
    min-width: auto;
    width: 100%;
}

.form-inline input,
.form-inline button {
    width: 100%;
    padding: 0.8rem 1rem;
}

.categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-item {
    padding: 1.5rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Competition Results Page Styles */
.winners-section {
    margin: 3rem 0;
    text-align: center;
    padding: 0 1rem;
}

.winners-section h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.winners-section h2 i {
    color: #FFD700;
    margin-right: 0.5rem;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.podium-place {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.3);
    border-radius: 16px;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-width: 180px;
    max-width: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.podium-place.first {
    order: 2;
    height: 300px;
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.podium-place.second {
    order: 1;
    height: 240px;
    border-color: #C0C0C0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.1) 100%);
}

.podium-place.third {
    order: 3;
    height: 200px;
    border-color: #CD7F32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.1) 100%);
}

.place-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00adff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.team-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    word-break: break-word;
    hyphens: auto;
}

.team-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00adff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.score-breakdown {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.3;
}

.score-breakdown span {
    display: block;
    margin: 0.2rem 0;
    white-space: nowrap;
}


.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.chart-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.chart-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.results-table {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}

.table-header {
    display: grid;
    grid-template-columns: 60px 1fr 100px 100px 100px;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #00adff, #0088cc);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 100px 100px;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 173, 255, 0.1);
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: rgba(0, 173, 255, 0.1);
}

.table-row.top-tier {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid #FFD700;
}

.rank {
    font-weight: 600;
    color: #00adff;
    text-align: center;
}

.team {
    color: #ffffff;
    font-weight: 500;
}

.comp-score, .judge-score, .total-score {
    color: #b0b0b0;
    text-align: center;
}

.total-score {
    color: #00adff;
    font-weight: 600;
}

.show-more-results {
    text-align: center;
    padding: 1rem;
}

.hidden {
    display: none;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.insight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adff, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.insight-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.insight-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.award-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 173, 255, 0.2);
}

.award-card.gold {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.award-card.silver {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
}

.award-card.bronze {
    border-color: #CD7F32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(205, 127, 50, 0.05) 100%);
}

.award-card.special {
    border-color: #9932CC;
    background: linear-gradient(135deg, rgba(153, 50, 204, 0.1) 0%, rgba(153, 50, 204, 0.05) 100%);
}

.award-card.innovation {
    border-color: #FF6347;
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.1) 0%, rgba(255, 99, 71, 0.05) 100%);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adff, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.award-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.award-card .winner {
    color: #00adff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.award-card .description {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    background: rgba(0, 173, 255, 0.1);
    border-left: 4px solid #00adff;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlights-list li strong {
    color: #00adff;
}

/* Mobile Responsive Styles for Competition Results */
@media (max-width: 768px) {
    .podium {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 100%;
    }
    
    .podium-place {
        width: 100%;
        max-width: 320px;
        min-height: auto !important;
        height: auto !important;
        margin: 0.5rem 0;
        padding: 2rem 1.5rem 1.5rem;
        min-width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .podium-place.first {
        order: 1;
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .podium-place.second {
        order: 2;
    }
    
    .podium-place.third {
        order: 3;
    }
    
    .place-number {
        font-size: 2rem;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .team-score {
        font-size: 1.4rem;
    }
    
    .score-breakdown {
        font-size: 0.9rem;
    }
    
    .charts-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chart-card {
        padding: 1rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 40px 1fr 60px 60px 60px;
        gap: 0.5rem;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .insights-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .sidebar-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .sidebar-card li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .back-to-blog {
        margin-bottom: 20px;
    }
    
    .back-to-blog .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

.sidebar-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.article-intro .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 400;
}

.article-section {
    margin-bottom: 40px;
    clear: both;
}

.article-section h2 {
    color: #00adff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 173, 255, 0.3);
    padding-bottom: 10px;
}

.article-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.article-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Back to Blog Button */
.back-to-blog {
    margin-bottom: 30px;
}

.back-to-blog .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Stats Grid for Articles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adff, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00adff;
    margin-bottom: 5px;
    display: block;
}

.stat-card .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Teams Grid */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.team-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00adff, #0088cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 173, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 173, 255, 0.15);
}

.team-item:hover::before {
    transform: scaleX(1);
}

/* Name Categories */
.name-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.category-group {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.category-group h3 {
    color: #00adff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.category-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-group li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.category-group li:last-child {
    border-bottom: none;
}

.category-group li:hover {
    color: #ffffff;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 173, 255, 0.1) 0%, rgba(0, 173, 255, 0.05) 100%);
    border: 2px solid rgba(0, 173, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.highlight-box h3 {
    color: #00adff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.highlight-box p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    padding: 10px 0;
}

.step-item i {
    color: #00adff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Award Preview */
.award-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.award-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 173, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 173, 255, 0.2);
}

.award-item i {
    color: #00adff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.award-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    margin: 50px 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(0, 173, 255, 0.1) 0%, rgba(0, 173, 255, 0.05) 100%);
    border: 2px solid rgba(0, 173, 255, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.cta-card h2 {
    color: #00adff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
}

.cta-card p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

/* Article Footer */
.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 173, 255, 0.2);
}

.article-footer p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.share-section {
    text-align: center;
}

.share-section h3 {
    color: #00adff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-btn.email {
    background: #34495e;
    color: white;
    border-color: #34495e;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Article Elements */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .team-item {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .name-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-group {
        padding: 20px;
    }
    
    .highlight-box {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .highlight-box h3 {
        font-size: 1.1rem;
    }
    
    .next-steps {
        gap: 12px;
    }
    
    .step-item {
        font-size: 0.9rem;
        gap: 12px;
    }
    
    .award-preview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .award-item {
        padding: 15px;
    }
    
    .award-item i {
        font-size: 1.5rem;
    }
    
    .award-item span {
        font-size: 0.9rem;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .share-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}