
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 全局样式 */
:root {
    --primary-color: #6366f1; 
    --secondary-color: #10b981; 
    --accent-color: #f59e0b; 
    --text-color: #1f2937; 
    --text-secondary: #6b7280; 
    --background-color: #f9fafb; 
    --card-bg: #ffffff; 
    --section-bg-color: #f3f4f6; 
    --border-color: #e5e7eb;
    --shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.1), 0 9px 28px 0 rgba(0, 0, 0, 0.05); 
}

body {
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}


header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
} 

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 4px;
}



.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    position: relative;
} 

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
} 

nav ul li a:hover::after {
    width: 80%;
}


main {
    margin-top: 80px;
}


.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 100px;
    overflow: hidden;
}


.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    background-color: #000; 
} 

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
    z-index: -1;
}

.quote {
    color: white;
    font-size: 32px;
    font-weight: 300;
    max-width: 800px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transform: translateY(0);
}

.video-button-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
    cursor: pointer;
}

.video-play-button {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
} 

.video-play-button:hover {
    background-color: transparent;
} 

.play-icon {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid white;
    margin-left: 5px;
}

.ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    aspect-ratio: 16/9;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
} 



.video-player {
    width: 100%;
    height: 100%;
    background-color: black;
}


.team-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/sy-zdjj.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.team-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.team-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 90%;
    padding: 40px 20px;
    color: white;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.left-section {
    flex: 0 0 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-image {
    text-align: center;
    transform: translate(-20px, 0);
}

.team-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-image img:hover {
    transform: scale(1.05);
}

.team-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    left: 0;
    transform: none;
}

.team-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
}


.hall-of-fame {
    padding: 100px 20px;
    background-color: var(--background-color);
    position: relative;
    background-image: url('images/sy-zdry.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hall-of-fame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 0.95), rgba(249, 250, 251, 0.8));
    z-index: 0;
}

.hall-of-fame .section-container {
    position: relative;
    z-index: 1;
}


.hall-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
    position: relative;
}


.hall-of-fame .section-title {
    text-align: center !important;
    position: relative;
    margin-bottom: 50px !important;
    color: #1f2937 !important;
    font-weight: 800 !important;
    font-size: 2.8rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hall-of-fame .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.hall-of-fame .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d97706, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}


.preview-section {
    flex: 1;
    max-width: 300px;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.preview-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.preview-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.preview-title {
    font-size: 16px;
    font-weight: bold;
    color: #1f2937;
    margin: 0 0 6px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.preview-desc {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.hall-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    position: relative;
    background: radial-gradient(ellipse at center, 
        rgba(245, 158, 11, 0.05) 0%, 
        transparent 70%);
}

.divider-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(245, 158, 11, 0.2) 20%,
        rgba(245, 158, 11, 0.4) 50%,
        rgba(245, 158, 11, 0.2) 80%,
        transparent 100%);
    position: relative;
    overflow: hidden;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(245, 158, 11, 0.6), 
        transparent);
    animation: dividerFlow 3s ease-in-out infinite;
}

@keyframes dividerFlow {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: -100%; }
}

.divider-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.divider-ornament::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.1), 
        rgba(217, 119, 6, 0.2));
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    animation: ornamentPulse 2s ease-in-out infinite;
}

.divider-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, 
        rgba(245, 158, 11, 0.3), 
        rgba(217, 119, 6, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.5);
    animation: ornamentRotate 4s linear infinite;
}

@keyframes ornamentPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes ornamentRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


.divider-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(245, 158, 11, 0.8);
    border-radius: 50%;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.divider-star:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.divider-star:nth-child(2) { top: 30%; right: 25%; animation-delay: 0.3s; }
.divider-star:nth-child(3) { bottom: 25%; left: 35%; animation-delay: 0.6s; }
.divider-star:nth-child(4) { bottom: 35%; right: 30%; animation-delay: 0.9s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}


.stars-section {
    grid-column: 3;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(245, 158, 11, 0.04),
        rgba(217, 119, 6, 0.02));
    border-radius: 25px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.stars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}


.main-image-section {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: none;
}

.main-image:hover {
    transform: none;
    box-shadow: none;
}

.stars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.star-card {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.04));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.star-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
    transition: left 0.6s ease;
}

.star-card:hover::before {
    left: 100%;
}

.star-card:hover {
    transform: translateY(-8px) scale(1.05) rotate(1deg);
    box-shadow: 
        0 20px 50px rgba(245, 158, 11, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12), 
        rgba(245, 158, 11, 0.08));
}

.star-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(245, 158, 11, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.star-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    animation: starAvatarPulse 2.5s ease-in-out infinite;
}

@keyframes starAvatarPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.star-card:hover .star-avatar {
    transform: scale(1.25) rotate(8deg);
    box-shadow: 
        0 12px 35px rgba(245, 158, 11, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.avatar-placeholder {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.star-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.star-name {
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
    margin: 0 0 8px 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.star-game {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #f59e0b; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 999;
    overflow: hidden;
}

.floating-widget img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
} 

.floating-widget:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
} 

.floating-content {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 220px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
    display: none;
    z-index: 999;
    overflow: hidden;
} 

.floating-content.active {
    display: block;
}



.floating-header {
    background-color: #f59e0b;
    padding: 15px 0;
    text-align: center;
}

.floating-character {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.floating-body {
    padding: 20px;
    text-align: center;
}

.floating-qrcode {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.floating-qrcode img {
    width: 100px;
    height: 100px;
}

.floating-download-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.floating-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.floating-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-button {
    background-color: white;
    color: #333;
    border: 1px solid #e5e7eb;
    padding: 10px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}

.floating-button:hover {
    background-color: #f9fafb;
    box-shadow: none;
    color: #333;
    text-decoration: none;
} 

.floating-button:visited {
    color: #333;
    text-decoration: none;
}

.floating-button svg {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.team-info {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: left;
    flex: 1;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    text-align: center;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
}

.team-description {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}
    margin-right: 10px;
}




.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hall-of-fame .section-title {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(99, 102, 241, 0.1);
}


.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
} 




.more-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.more-button {
    width: 100%;
    max-width: 400px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.more-button:hover::before {
    left: 100%;
}

.more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f59e0b, #b45309);
}

.more-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.button-text {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.button-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.more-button:hover .button-arrow {
    transform: translateX(5px);
}


.more-button-small {
    width: auto;
    height: 36px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 16px;
    margin-top: 20px;
    align-self: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.more-button-small:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.more-button-small:active {
    transform: translateY(0);
}

.more-button-small .button-text {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.more-button-small .button-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.more-button-small:hover .button-arrow {
    transform: translateX(3px);
}


@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .logo img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    nav ul li {
        margin-left: 15px;
    }

    .quote {
        font-size: 24px;
    }

    .video-button-container {
        width: 100px;
        height: 100px;
    }

    .team-content {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .floating-content {
        width: calc(100% - 60px);
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 50px;
        padding: 0 15px;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 25px;
        height: 25px;
        margin-right: 6px;
    }

    .logo-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    nav ul li {
        margin-left: 10px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 6px 8px;
    }

    .quote {
        font-size: 20px;
        padding: 0 20px;
    }

    .video-button-container {
        width: 80px;
        height: 80px;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 24px;
    }

    .floating-widget {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .floating-content {
        width: calc(100% - 40px);
        bottom: 85px;
        right: 20px;
    }
}