/* =====================================================
   छत्रपती शिवाजी महाराज चषक - Pages Stylesheet
   ===================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    color: #000000;
    padding: 3rem 0 2rem;
    text-align: center;
    margin-top: -1px;
}

/* Page Header with Teams Intro */
.page-header .teams-intro {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.page-header .teams-intro h2 {
    color: #000000;
}

.page-header .teams-intro p {
    color: #000000;
}

.page-header .teams-grid {
    margin-top: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #000000;
    margin-top: 0;
}

/* Registration Form Button - Below Timer */
.registration-form-btn-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.registration-form-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem 4rem;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.4),
        0 0 60px rgba(234, 88, 12, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 500px;
    width: auto;
    border: none;
}

.registration-form-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: shimmer-btn 3s linear infinite;
}

@keyframes shimmer-btn {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.registration-form-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(234, 88, 12, 0.6),
        0 0 80px rgba(234, 88, 12, 0.3);
}

.form-btn-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconBounce-btn 2s ease-in-out infinite;
}

@keyframes iconBounce-btn {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.form-btn-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.form-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-btn-main-text {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.form-btn-sub-text-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.form-btn-sub-text {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.form-btn-arrow {
    font-size: 1.5rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: inline-flex;
    align-items: center;
}

.registration-form-btn:hover .form-btn-arrow {
    transform: translateX(8px);
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', 'Caveat', cursive;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.content-image .image-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Content Logo Styling */
.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-logo {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-logo {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .content-logo {
        max-height: 300px;
    }
}

/* Mission & Vision */
.mission-vision {
    background: var(--light-bg);
    padding: 4rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 1rem;
    /* Extra space for hover effect */
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.mv-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Values */
.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

/* Responsive breakpoints for values grid */
@media (max-width: 1400px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Journey Timeline */
.journey-section {
    background: var(--light-bg);
}

.journey-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Vertical timeline line in center */
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.journey-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    width: 100%;
    z-index: 0;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.journey-item:hover {
    z-index: 0;
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

/* Odd items (1st, 3rd) - Left side */
.journey-item:nth-child(odd),
.journey-item.journey-future {
    flex-direction: row;
    justify-content: flex-start;
}

.journey-item:nth-child(odd) .journey-content,
.journey-item.journey-future .journey-content {
    width: calc(50% - 3rem);
    max-width: calc(50% - 3rem);
    margin-right: auto;
    margin-left: 0;
    flex-shrink: 0;
}

.journey-item:nth-child(odd) .journey-year,
.journey-item.journey-future .journey-year {
    position: absolute;
    left: calc(50% - 20px);
    transform: translateX(-50%);
    z-index: 100;
}

/* Even items (2nd, 4th) - Right side */
.journey-item:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.journey-item:nth-child(even) .journey-content {
    width: calc(50% - 3rem);
    max-width: calc(50% - 3rem);
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
}

.journey-item:nth-child(even) .journey-year {
    position: absolute;
    left: calc(50% - 20px);
    transform: translateX(-50%);
    z-index: 100;
}

.journey-item::after {
    display: none;
}

.journey-year {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    min-width: 140px;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(234, 88, 12, 0.4);
    flex-shrink: 0;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    z-index: 100 !important;
    position: relative;
}

.journey-future .journey-year {
    box-shadow: 0 5px 25px rgba(234, 88, 12, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.journey-content {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.journey-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.journey-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    z-index: 1;
}

/* Ensure journey-year always stays on top, even on hover */
.journey-item:hover .journey-year {
    z-index: 100 !important;
}

.journey-item:hover .journey-content {
    z-index: 1 !important;
}

.journey-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.journey-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    .journey-item:nth-child(odd) .journey-content,
    .journey-item:nth-child(even) .journey-content {
        width: calc(50% - 2rem);
    }

    .journey-year {
        min-width: 120px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Mobile (below 768px) - Stack vertically */
@media (max-width: 767px) {
    .journey-timeline::before {
        left: 30px;
    }

    .journey-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }

    /* All content boxes on the right side */
    .journey-item:nth-child(odd) .journey-content,
    .journey-item:nth-child(even) .journey-content,
    .journey-item.journey-future .journey-content {
        width: calc(100% - 160px);
        max-width: 400px;
        margin-left: 150px;
        margin-right: 0;
    }

    /* All year badges on the left side (at timeline) */
    .journey-item:nth-child(odd) .journey-year,
    .journey-item:nth-child(even) .journey-year,
    .journey-item.journey-future .journey-year {
        left: 30px;
        transform: translateX(-50%);
        position: absolute;
        z-index: 100 !important;
    }

    .journey-year {
        min-width: 120px;
        max-width: 120px;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        z-index: 100 !important;
    }

    .journey-content {
        padding: 1.2rem;
    }

    .journey-content h3 {
        font-size: 1.2rem;
    }

    .journey-content p {
        font-size: 0.95rem;
    }
}

/* Small Mobile (below 480px) - Stacked Layout */
@media (max-width: 479px) {
    .journey-timeline::before {
        left: 20px;
    }

    .journey-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 2.5rem;
        padding-left: 0;
    }

    /* All year badges aligned to left (above content) */
    .journey-item:nth-child(odd) .journey-year,
    .journey-item:nth-child(even) .journey-year,
    .journey-item.journey-future .journey-year {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
        margin-left: 0;
        align-self: flex-start;
        z-index: 100 !important;
    }

    /* All content boxes - reduced size with left margin */
    .journey-item:nth-child(odd) .journey-content,
    .journey-item:nth-child(even) .journey-content,
    .journey-item.journey-future .journey-content {
        width: calc(100% - 20px);
        max-width: 350px;
        margin-left: 30px;
        margin-right: 0;
    }

    .journey-year {
        min-width: 120px;
        max-width: none;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
    }

    .journey-content {
        padding: 0.9rem;
        margin-left: 20px;
    }

    .journey-content h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .journey-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.7rem;
    }
}

/* Ensure pulse animation works on mobile */
@media (max-width: 767px) {
    .journey-future .journey-year {
        animation: pulse-mobile 2s infinite;
    }
}

@keyframes pulse-mobile {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Inspiration */
.inspiration-section {
    background: var(--white);
}

.inspiration-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.inspiration-text {
    text-align: center;
}

.inspiration-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.inspiration-text p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', 'Caveat', cursive;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.fort-showcase {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.fort-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.fort-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: var(--secondary-color);
    box-shadow: 0 2px 10px var(--shadow);
}

.fort-item i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fort-item .fort-logo {
    display: block;
    width: 150px;
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 0.5rem;
    border-radius: 8px;
}

.fort-item span {
    display: block;
}

/* Format Page Styles */
.format-overview {
    padding: 3rem 0;
    background: var(--light-bg);
    text-align: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.overview-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.format-section {
    padding: 4rem 0;
}

/* Remove top padding for teams page format-section */
.format-section:first-of-type {
    padding-top: 0;
}

.format-section.bg-light {
    background: var(--light-bg);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    padding-top: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
    transition: var(--transition);
    overflow: visible;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
    z-index: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.step-content ul {
    list-style: none;
}

.step-content ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.step-content ul li i {
    color: var(--success);
    margin-top: 3px;
    flex-shrink: 0;
}

.step-content ul li a {
    color: var(--secondary-color) !important;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
    display: inline;
}

.step-content ul li a:hover {
    color: var(--primary-color) !important;
}

/* Composition Grid */
.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    /* Extra space for hover effect */
}

.comp-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comp-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.comp-card.highlight {
    border: 2px solid var(--secondary-color);
}

.comp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    overflow: visible;
}

.comp-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
    transition: transform 0.3s ease;
    margin: 0 auto 1.5rem;
}

.comp-icon i {
    font-size: 2rem;
    color: white;
}

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

.comp-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.comp-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.comp-card p {
    color: var(--text-secondary);
}

.composition-note {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.composition-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2px;
}

/* Auction Content */
.auction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 1rem;
    /* Extra space for hover effect */
}

.auction-info h3,
.auction-rules h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.auction-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auction-item {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auction-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.auction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    overflow: visible;
}

.auction-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.auction-icon i {
    font-size: 1.5rem;
    color: white;
}

.auction-item:hover .auction-icon {
    transform: scale(1.1);
}

.auction-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auction-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--light-bg);
    border-radius: 5px;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.rules-list i {
    color: var(--primary-color);
    margin-top: 2px;
}

/* Strategies Grid - Creative Styling */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding-bottom: 1rem;
}

.strategy-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Decorative corner accent */
.strategy-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.15;
    border-radius: 0 20px 0 100%;
    transition: opacity 0.4s ease;
}

/* Animated background gradient on hover */
.strategy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.strategy-card:hover::before {
    opacity: 1;
}

/* Hover effects */
.strategy-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.25);
    border-color: var(--secondary-color);
    overflow: visible;
}

.strategy-card:hover::after {
    opacity: 0.25;
}

/* Strategy Icon - Creative Styling */
.strategy-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Icon glow effect */
.strategy-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.strategy-card:hover .strategy-icon::before {
    opacity: 0.6;
}

.strategy-icon i {
    font-size: 2.5rem;
    color: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
}

/* Icon animation on hover */
.strategy-card:hover .strategy-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.4);
}

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

/* Strategy Card Content */
.strategy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.strategy-card:hover h3 {
    color: var(--secondary-color);
}

.strategy-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.strategy-card:hover p {
    color: var(--text-primary);
}

/* Staggered animation for cards */
.strategy-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.strategy-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.strategy-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.strategy-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .strategy-card {
        padding: 2rem 1.5rem;
    }

    .strategy-icon {
        width: 80px;
        height: 80px;
    }

    .strategy-icon i {
        font-size: 2.2rem;
    }

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

@media (max-width: 768px) {
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strategy-card {
        padding: 2rem 1.5rem;
    }

    .strategy-icon {
        width: 75px;
        height: 75px;
    }

    .strategy-icon i {
        font-size: 2rem;
    }

    .strategy-card h3 {
        font-size: 1.25rem;
    }

    .strategy-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .strategy-card {
        padding: 1.5rem 1.25rem;
    }

    .strategy-icon {
        width: 70px;
        height: 70px;
    }

    .strategy-icon i {
        font-size: 1.8rem;
    }

    .strategy-card h3 {
        font-size: 1.15rem;
    }

    .strategy-card p {
        font-size: 0.9rem;
    }
}

/* Auction Event Card - Creative Styling */
.auction-event-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}


.auction-event-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    border-radius: 0 20px 0 100%;
    pointer-events: none;
}

.auction-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(234, 88, 12, 0.25);
    overflow: visible;
    border-color: transparent !important;
}

.event-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.event-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.event-header i {
    font-size: 3rem;
    color: white;
    z-index: 1;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.event-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.event-details {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent !important;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-row::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 12px 0 100%;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-label i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.detail-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.25rem;
}

.event-note {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
    border-top: 2px solid var(--secondary-color);
    padding: 1.5rem 2.5rem;
}

.event-note p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.event-note a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-note a:hover {
    color: var(--primary-color);
}

.event-note i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2px;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.event-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Match Format */
.match-format {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    /* Extra space for hover effect */
}

.format-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.format-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    overflow: visible;
}

.format-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.format-card h3 i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
    transition: transform 0.3s ease;
    margin-right: 0.75rem;
    font-size: 1.3rem;
    color: white;
    vertical-align: middle;
}

.format-card:hover h3 i {
    transform: scale(1.1);
}

.format-highlight {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.format-card p {
    color: var(--text-secondary);
}

/* Tournament Stages */
.tournament-stages {
    margin-top: 3rem;
}

.tournament-stages>h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.stages-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 768px) {
    .stages-grid {
        gap: 3rem;
    }
}

.stage-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
}

.stage-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    overflow: visible;
}

.stage-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    margin: 0 auto 1rem !important;
    box-shadow: 0 5px 20px rgba(234, 88, 12, 0.4) !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    padding: 0.2rem 0.4rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.stage-card h4 {
    font-size: 1rem !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

.stage-card p {
    color: var(--text-secondary) !important;
    margin-bottom: 0.4rem !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
}

.stage-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .stage-arrow {
        margin-top: 0;
    }
}

/* Points System */
.points-table {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.points-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
    align-items: center;
}

.points-row:last-child {
    border-bottom: none;
}

.points-row:nth-child(even) {
    background: var(--light-bg);
}

.points-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.points-label i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.points-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}

.points-note {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.tie-breaker {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.tie-breaker h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tie-breaker ol {
    padding-left: 1.5rem;
}

.tie-breaker li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    padding-bottom: 1rem;
    /* Extra space for hover effect */
}

.included-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.included-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    overflow: visible;
}

.included-item i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
    transition: transform 0.3s ease;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.included-item:hover i {
    transform: scale(1.1);
}

.included-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.included-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive for included-grid */
@media (max-width: 1200px) {
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .included-item {
        padding: 1.2rem;
    }

    .included-item i {
        font-size: 2rem;
    }

    .included-item h4 {
        font-size: 1rem;
    }

    .included-item p {
        font-size: 0.85rem;
    }

    /* Auction Event Card Mobile */
    .auction-event-card {
        border-radius: 15px;
        margin: 0 1rem;
    }

    .event-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        border-radius: 15px 15px 0 0;
    }

    .event-header i {
        font-size: 2.5rem;
    }

    .event-header h3 {
        font-size: 1.5rem;
    }

    .event-details {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-row {
        padding: 1rem;
    }

    .detail-value {
        font-size: 1.1rem;
    }

    .event-note {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        text-align: center;
        border-radius: 0 0 15px 15px;
    }

    .event-note i {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

/* Teams Page Styles */
.teams-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 0 2rem;
}

.teams-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.teams-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.teams-intro h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.teams-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.team-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
}

.team-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 5px 20px var(--shadow-lg);
}

.team-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.team-body {
    padding: 2rem;
}

.team-history {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.team-history h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-history p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-info {
    display: grid;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 5px;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.info-label i {
    color: var(--primary-color);
}

.info-value {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Color Variations for Teams */
.team-card:nth-child(1) .team-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.team-card:nth-child(2) .team-header {
    background: linear-gradient(135deg, #004e89 0%, #1a73e8 100%);
}

.team-card:nth-child(3) .team-header {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.team-card:nth-child(4) .team-header {
    background: linear-gradient(135deg, #d63031 0%, #e17055 100%);
}

.team-card:nth-child(5) .team-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.team-card:nth-child(6) .team-header {
    background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
}

.team-card:nth-child(7) .team-header {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

.team-card:nth-child(8) .team-header {
    background: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
}

.team-card:nth-child(9) .team-header {
    background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
}

.team-card:nth-child(10) .team-header {
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}

/* Responsive Design for Pages */
@media (max-width: 968px) {

    .content-grid,
    .mv-grid,
    .inspiration-content {
        flex-direction: column;
    }
    
    .auction-content {
        grid-template-columns: 1fr;
    }

    .stages-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stage-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .stage-card {
        padding: 1.5rem;
        margin-bottom: 0;
    }

    /* Journey timeline mobile styles moved to main timeline section */
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .registration-form-btn-wrapper {
        margin-top: 1.5rem;
    }

    .registration-form-btn {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
        min-width: auto;
        width: 90%;
        max-width: 500px;
        font-size: 1rem;
    }

    .form-btn-icon {
        font-size: 1.75rem;
    }

    .form-btn-content {
        align-items: center;
        text-align: center;
    }

    .form-btn-main-text {
        font-size: 1.1rem;
    }

    .form-btn-sub-text {
        font-size: 0.8rem;
    }

    .form-btn-arrow {
        font-size: 1rem;
    }

    .teams-intro h1 {
        font-size: 2rem;
    }

    .teams-subtitle {
        font-size: 1.1rem;
    }

    .teams-grid {
        grid-template-columns: 1fr;
    }

    .fort-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fort-item .fort-logo {
        width: 120px;
        height: 120px;
    }
}

/* Tablet responsive styles for fort logos */
@media (max-width: 992px) and (min-width: 769px) {
    .fort-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .fort-item .fort-logo {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 1024px) and (min-width: 993px) {
    .fort-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .fort-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fort-item .fort-logo {
        width: 100px;
        height: 100px;
    }

    .points-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .points-value {
        margin-top: 0.5rem;
    }

    .registration-form-btn {
        flex-direction: column;
        padding: 1rem 1.25rem;
        gap: 0.6rem;
        width: 95%;
        max-width: 400px;
        font-size: 0.9rem;
    }

    .form-btn-icon {
        font-size: 1.5rem;
    }

    .form-btn-content {
        align-items: center;
        text-align: center;
    }

    .form-btn-main-text {
        font-size: 1rem;
    }

    .form-btn-sub-text {
        font-size: 0.75rem;
    }

    .form-btn-arrow {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .registration-form-btn-wrapper {
        margin-top: 1.25rem;
    }

    .registration-form-btn {
        padding: 1rem 1.25rem !important;
        gap: 0.6rem !important;
        width: 95% !important;
        max-width: 400px !important;
        font-size: 0.9rem !important;
    }

    .form-btn-icon {
        font-size: 1.5rem !important;
    }

    .form-btn-main-text {
        font-size: 1rem !important;
    }

    .form-btn-sub-text {
        font-size: 0.75rem !important;
    }

    .form-btn-arrow {
        font-size: 0.9rem !important;
    }
}