@font-face {
    font-family: 'Formula1';
    src: url('Formula1-Regular_web_0.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Formula1';
    src: url('Formula1-Bold_web_0.ttf') format('truetype');
    font-weight: bold;
}

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

body {
    font-family: 'Formula1', Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(45, 27, 105, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 1.1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a.active {
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
}

.register-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px !important;
    border: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-bottom: none !important;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ff8c5a, #ffab7a) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3) !important;
    color: white !important;
}

/* Admin Icon Styling */
.admin-icon {
  padding: 0.5rem !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-bottom: none !important;
}

.admin-icon svg {
  width: 20px !important;
  height: 20px !important;
  transition: all 0.3s ease !important;
}

.admin-icon:hover {
  background: rgba(255, 127, 80, 0.2) !important;
  color: #ff7f50 !important;
  border-bottom: none !important;
}

.admin-icon:hover svg {
  transform: rotate(90deg) scale(1.1) !important;
  fill: #ff7f50 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Championships Section */
.championships-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.championships-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.championships-container h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: bold;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Championship Cards */
.championship-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.championship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Webbo Cup Card */
.webbo-card {
    background: linear-gradient(135deg, #1e3a8a, #87ceeb);
    color: white;
}

.webbo-card .card-overlay {
    background: linear-gradient(135deg, #1e3a8a, #ff7f50);
    opacity: 0;
}

.webbo-card:hover .card-overlay {
    opacity: 1;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Tardis Cup Card */
.tardis-card {
    background: linear-gradient(135deg, #000000, oklch(0.55 0.21 264.36));
    color: white;
}

.tardis-card .card-overlay {
    background: linear-gradient(135deg, #000000, oklch(0.55 0.21 264.36));
    opacity: 0;
}

.tardis-card:hover .card-overlay {
    opacity: 1;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid #ff6b35;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        color: #ffffff !important;
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        border-bottom: none;
    }
    
    .nav-menu a:hover {
        color: #ff6b35 !important;
    }
    
    .nav-menu a.active {
        color: #ff6b35 !important;
        border-bottom: 2px solid #ff6b35;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .championships-container h2 {
        font-size: 2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .championship-card {
        height: 250px;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .championships-section {
        padding: 2rem 1rem;
    }
    
    .championships-container h2 {
        font-size: 1.8rem;
    }
    
    .cards-container {
        gap: 1.5rem;
    }
}

/* Regulations Page Styles */
.regulations-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
    min-height: 100vh;
}

.regulations-container h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 4px solid #ff6b35;
    padding-bottom: 1rem;
}

/* Championship Selector */
.championship-selector {
    margin-bottom: 2rem;
    text-align: center;
}

.championship-selector label {
    color: #ffffff;
    font-weight: 600;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.championship-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    min-width: 200px;
}

.championship-selector select:focus {
    outline: none;
    border-color: #ff8c5a;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.championship-selector option {
    background: #2d1b69;
    color: #ffffff;
}

/* Regulation Tabs */
.regulation-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.regulation-tab-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.regulation-tab-button:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff8c5a;
    transform: translateY(-2px);
}

.regulation-tab-button.active {
    background: #ff6b35;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Tab Content */
.regulation-tab-content {
    display: none;
}

.regulation-tab-content.active {
    display: block;
}

.regulation-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.regulation-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.regulation-section h3 {
    color: #ff8c5a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.regulation-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.regulation-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.regulation-section ul {
    color: #e0e0e0;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.regulation-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.regulation-section strong {
    color: #ffffff;
}

.incident-example {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.incident-example p {
    margin: 0;
    color: #ffffff;
}

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

.settings-category {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.settings-category h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    padding-bottom: 0.5rem;
}

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

.settings-category li {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-category li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Vehicle Specifications Grid */
.vehicle-specs {
    margin-bottom: 2rem;
}

.vehicle-specs h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

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

.spec-category {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.spec-category h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    padding-bottom: 0.5rem;
}

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

.spec-category li {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-category li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.championship-points {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.championship-points h3 {
    margin-top: 0;
    color: #ff8c5a;
    font-size: 1.4rem;
}

.points-table {
    margin-bottom: 2rem;
}

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

.points-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border-left: 4px solid #ff6b35;
}

.points-row .position {
    font-weight: bold;
    color: #ffffff;
}

.points-row .points {
    font-weight: bold;
    color: #ff8c5a;
    font-size: 1.1rem;
}

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

.spec-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.spec-category h3 {
    margin-top: 0;
    color: #ff8c5a;
    font-size: 1.4rem;
}

.conditions-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.conditions-category h3 {
    margin-top: 0;
    color: #ff8c5a;
}

.lobby-settings {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.lobby-settings h3 {
    margin-top: 0;
    color: #ff8c5a;
}

@media (max-width: 768px) {
    .regulations-content {
        padding: 1rem;
    }
    
    .regulations-container h1 {
        font-size: 2rem;
    }
    
    .regulation-section {
        padding: 1.5rem;
    }
    
    .regulation-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .regulation-tab-button {
        width: 100%;
        max-width: 200px;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .settings-category {
        padding: 1rem;
    }
    
    .spec-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spec-category {
        padding: 1rem;
        text-align: center;
    }
    
    .championship-selector {
        margin-bottom: 1.5rem;
    }
    
    .championship-selector select {
        width: 100%;
        max-width: 250px;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-specs {
        grid-template-columns: 1fr;
    }
    
    .championship-points {
        padding: 1rem;
    }
}

/* Registration Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 2rem;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close {
    color: #999;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: color 0.3s;
}

.close:hover {
    color: #ff0000;
}

.modal-content h2 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 0.5rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Formula1', Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Formula1', Arial, sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.status-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-message.loading {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .nav-menu .register-btn {
        margin-top: 1rem;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        width: auto;
    }
    
    .nav-menu {
        gap: 1rem;
    }
}/* 
Register CTA Section */
.register-cta-section {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.register-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.register-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.register-cta-content h2 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.register-cta-content p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.register-cta-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Formula1', Arial, sans-serif;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.register-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.register-cta-btn:hover::before {
    left: 100%;
}

.register-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
    color: #ff6b35;
}

.register-cta-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-text {
    font-size: 1.3rem;
}

.btn-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile Responsiveness for Register CTA */
@media (max-width: 768px) {
    .register-cta-section {
        padding: 3rem 1rem;
    }
    
    .register-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .register-cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .register-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .btn-text {
        font-size: 1.1rem;
    }
    
    .btn-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .register-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .register-cta-content p {
        font-size: 1rem;
    }
    
    .register-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .btn-icon {
        font-size: 1.2rem;
    }
}