:root {
--brand-primary: #f57c28;
--brand-dark: #111111;
--brand-text: #333333;
--brand-border: #F3F4F6;
--brand-bg-light: #F4F5F7;
--brand-white: #FFFFFF;
--brand-gray: #666666;
--brand-success: #10B981;
--brand-danger: #F84F4F;
--side-margin: 250px;
--section-padding: 60px;
}
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
background-color: var(--brand-white);
color: var(--brand-text);
}
.custom-container {
padding-left: var(--side-margin);
padding-right: var(--side-margin);
width: 100%;
}
.header-roundsite {
background-color: var(--brand-white);
border-bottom: 1px solid var(--brand-border);
padding: 14px 0;
position: sticky;
top: 0;
z-index: 1050;
transition: padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.header-roundsite.scrolled {
padding: 8px 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
border-bottom-color: transparent;
}
.header-roundsite .navbar-brand {
display: flex;
align-items: center;
gap: 10px;
}
.header-roundsite .brand-name {
font-size: 22px;
font-weight: 700;
color: var(--brand-dark);
letter-spacing: -0.4px;
}
.header-roundsite .navbar-nav {
gap: 36px;
}
.header-roundsite .nav-link {
color: var(--brand-text) !important;
font-size: 15px;
font-weight: 500;
padding: 0 !important;
display: flex;
align-items: center;
gap: 6px;
transition: none !important;
}
.btn-primary {
background-color: var(--brand-primary) !important;
border-color: var(--brand-primary) !important;
color: var(--brand-white) !important;
font-size: 15px;
font-weight: 600;
padding: 10px 22px;
border-radius: 6px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: none !important;
box-shadow: none !important;
border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
background-color: var(--brand-primary) !important;
color: var(--brand-white) !important;
}
.btn-arrow {
font-size: 13px;
transition: transform 0.2s ease-out !important;
}
.btn-primary:hover .btn-arrow {
transform: translateX(4px);
}
section {
padding: var(--section-padding) 0;
}
.section-tag {
font-size: 16px;
font-weight: 500;
color: var(--brand-gray);
margin-bottom: 20px;
display: block;
}
.hero-section {
text-align: center;
}
.hero-title {
font-size: 84px;
font-weight: 700;
color: var(--brand-dark);
line-height: 1.05;
letter-spacing: -3px;
margin-bottom: 32px;
}
.hero-subtitle {
font-size: 22px;
font-weight: 400;
color: var(--brand-gray);
max-width: 620px;
margin: 0 auto 48px auto;
line-height: 1.5;
}
.features-section {
text-align: center;
}
.features-title {
font-size: 64px;
font-weight: 700;
letter-spacing: -2px;
line-height: 1.1;
margin-bottom: 24px;
color: var(--brand-dark);
}
.features-description {
font-size: 18px;
color: var(--brand-gray);
max-width: 580px;
margin: 0 auto 60px auto;
line-height: 1.6;
}
.stats-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 48px;
margin-bottom: 80px;
}
.stat-item {
display: flex;
align-items: center;
gap: 16px;
}
.stat-icon {
font-size: 32px;
color: var(--brand-primary);
line-height: 1;
}
.stat-text {
display: flex;
align-items: baseline;
gap: 12px;
}
.stat-value {
font-size: 44px;
font-weight: 500;
color: var(--brand-dark);
letter-spacing: -1px;
line-height: 1;
}
.stat-label {
font-size: 16px;
font-weight: 500;
color: var(--brand-gray);
}
.feature-slider {
width: 100%;
border-radius: 24px;
margin-bottom: 5px;
overflow: hidden;
background-color: transparent;
transform: translateZ(0);
}
.feature-slider .carousel-item {
transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.feature-slider img {
width: 100%;
height: auto;
object-fit: contain;
display: block;
}
.ticker-wrap {
width: 100%;
overflow: hidden;
background: var(--brand-dark);
padding: 30px 0;
border-radius: 24px;
}
.ticker {
display: flex;
white-space: nowrap;
animation: ticker-move 30s linear infinite;
}
.ticker-item {
display: flex;
align-items: center;
gap: 15px;
padding: 0 40px;
color: var(--brand-white);
font-size: 24px;
font-weight: 600;
}
.ticker-img {
width: 40px;
height: 40px;
border-radius: 8px;
object-fit: cover;
}
@keyframes ticker-move {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.key-features-section {
background-color: var(--brand-bg-light);
}
.section-header-center {
text-align: center;
margin-bottom: 64px;
}
.key-feature-card {
background-color: var(--brand-white);
border-radius: 16px;
padding: 40px;
height: 100%;
text-align: left;
}
.key-feature-card .card-icon {
font-size: 32px;
color: var(--brand-primary);
margin-bottom: 24px;
display: inline-block;
line-height: 1;
}
.key-feature-card .card-title {
font-size: 20px;
font-weight: 600;
color: var(--brand-dark);
margin-bottom: 12px;
letter-spacing: -0.5px;
}
.key-feature-card .card-text {
font-size: 15px;
color: var(--brand-gray);
line-height: 1.6;
margin: 0;
}
.process-section {
background-color: var(--brand-white);
}
.process-grid {
position: relative;
z-index: 1;
}
.process-grid::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 50%, transparent 100%);
z-index: -1;
opacity: 0.6;
transform: translateY(-50%);
}
.process-card {
background-color: var(--brand-white);
border: 1px solid var(--brand-border);
border-radius: 12px;
padding: 48px 40px;
height: 100%;
text-align: left;
display: flex;
flex-direction: column;
}
.process-text {
font-size: 16px;
color: var(--brand-gray);
line-height: 1.6;
margin-bottom: 32px;
flex-grow: 1;
}
.process-icon {
font-size: 36px;
color: var(--brand-dark);
margin-bottom: 24px;
display: inline-block;
line-height: 1;
}
.process-title {
font-size: 28px;
font-weight: 600;
color: var(--brand-dark);
margin-bottom: 16px;
letter-spacing: -1px;
}
.process-list {
list-style: none;
padding: 0;
margin: 0;
}
.process-list-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
color: var(--brand-dark);
font-weight: 500;
margin-bottom: 16px;
}
.process-list-item:last-child {
margin-bottom: 0;
}
.process-list-icon {
color: var(--brand-success);
font-size: 20px;
}
.gallery-section {
background-color: var(--brand-white);
}
.gallery-container {
border-top: 1px solid var(--brand-border);
}
.gallery-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 40px 0;
border-bottom: 1px solid var(--brand-border);
gap: 40px;
position: relative;
}
.gallery-content {
flex: 1;
max-width: 640px;
}
.gallery-item-title {
font-size: 40px;
font-weight: 600;
color: var(--brand-dark);
margin-bottom: 16px;
letter-spacing: -1px;
line-height: 1.1;
}
.gallery-item-desc {
font-size: 16px;
color: var(--brand-gray);
line-height: 1.6;
margin-bottom: 0;
}
.gallery-tags-wrapper {
display: grid;
grid-template-rows: 0fr;
opacity: 0;
transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-tags-inner {
overflow: hidden;
}
.gallery-tags {
display: flex;
flex-wrap: wrap;
gap: 12px;
padding-top: 24px;
}
.gallery-tag {
background-color: #EBEBEB;
color: #333333;
font-size: 14px;
font-weight: 500;
padding: 8px 18px;
border-radius: 100px;
white-space: nowrap;
}
.gallery-image-wrapper {
width: 200px;
height: 130px;
border-radius: 12px;
overflow: hidden;
cursor: pointer;
position: relative;
transform: translateZ(0);
will-change: width, height;
transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
flex-shrink: 0;
}
.gallery-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%);
transform: scale(1.02);
transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
.gallery-row:hover .gallery-tags-wrapper {
grid-template-rows: 1fr;
opacity: 1;
}
.gallery-row:hover .gallery-image-wrapper {
width: 480px;
height: 300px;
}
.gallery-row:hover .gallery-img {
filter: grayscale(0%);
transform: scale(1);
}
}
.lightbox-modal {
backdrop-filter: blur(12px);
background-color: rgba(0, 0, 0, 0.85);
}
.lightbox-modal .modal-content {
background: transparent;
border: none;
box-shadow: none;
}
.lightbox-close-btn {
position: fixed;
top: 24px;
right: 24px;
z-index: 1080;
background: #FFFFFF;
color: #111111;
border: none;
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 20px;
transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.lightbox-close-btn:hover {
transform: scale(1.05);
background-color: var(--brand-primary);
color: var(--brand-white);
}
.pricing-section {
background-color: var(--brand-bg-light);
}
.pricing-card {
background-color: var(--brand-white);
border: 1px solid var(--brand-border);
border-radius: 12px;
padding: 40px 32px;
margin-top: 24px;
margin-bottom: 24px;
height: calc(100% - 48px);
display: flex;
flex-direction: column;
text-align: center;
position: relative;
box-shadow: none;
}
.pricing-card.highlight {
border: 2px solid var(--brand-primary);
padding: 64px 32px;
margin-top: 0;
margin-bottom: 0;
height: 100%;
}
.pricing-badge {
position: absolute;
top: -16px;
left: 50%;
transform: translateX(-50%);
background-color: var(--brand-danger);
color: var(--brand-white);
font-size: 14px;
font-weight: 600;
padding: 8px 20px;
border-radius: 6px;
white-space: nowrap;
}
.pricing-title {
font-size: 20px;
font-weight: 500;
color: var(--brand-dark);
margin-bottom: 16px;
width: 100%;
}
.pricing-price {
font-size: 48px;
font-weight: 700;
color: var(--brand-dark);
margin-bottom: 16px;
line-height: 1;
letter-spacing: -1px;
width: 100%;
}
.pricing-desc {
font-size: 14px;
color: var(--brand-gray);
margin-bottom: 32px;
line-height: 1.6;
min-height: 48px;
width: 100%;
display: flex;
align-items: flex-start;
justify-content: center;
}
.pricing-divider {
height: 1px;
background-color: var(--brand-border);
margin-bottom: 32px;
width: 100%;
}
.pricing-list-features {
list-style: none;
padding: 0;
margin: 0 0 40px 0;
text-align: left;
width: 100%;
}
.pricing-list-feature {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 15px;
color: var(--brand-text);
margin-bottom: 16px;
font-weight: 500;
}
.pricing-list-feature:last-child {
margin-bottom: 0;
}
.pricing-feature-icon {
color: var(--brand-success);
font-size: 20px;
line-height: 1.1;
}
.pricing-link {
color: var(--brand-primary);
font-weight: 600;
font-size: 15px;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
gap: 4px;
transition: gap 0.2s ease;
}
.pricing-link:hover, .pricing-link:focus {
gap: 8px;
color: var(--brand-primary);
}
.faq-section {
background-color: var(--brand-white);
}
.faq-sticky-wrap {
position: sticky;
top: 120px;
}
.faq-title {
font-size: 56px;
font-weight: 700;
color: var(--brand-dark);
line-height: 1.1;
letter-spacing: -2px;
margin-bottom: 24px;
}
.faq-desc {
font-size: 18px;
color: var(--brand-gray);
margin-bottom: 40px;
line-height: 1.6;
max-width: 400px;
}
.faq-accordion .accordion-item {
background-color: var(--brand-white);
border: 1px solid var(--brand-border);
border-radius: 8px !important;
margin-bottom: 16px;
overflow: hidden;
transition: all 0.3s ease;
}
.faq-accordion .accordion-item:last-child {
margin-bottom: 0;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
border-color: var(--brand-primary);
background-color: #F4F3FF;
}
.faq-accordion .accordion-button {
font-family: 'Inter', sans-serif;
font-size: 18px;
font-weight: 500;
color: var(--brand-dark);
background-color: transparent;
padding: 24px 32px;
box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
color: var(--brand-primary);
background-color: transparent;
}
.faq-accordion .accordion-body {
padding: 0 32px 32px 32px;
font-size: 16px;
color: var(--brand-text);
line-height: 1.6;
background-color: transparent;
}
.faq-accordion .accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transition: transform 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed):after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235C51FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: rotate(-180deg);
}
.footer-roundsite {
background-color: var(--brand-dark);
color: var(--brand-white);
padding: 80px 0 32px 0;
}
.footer-roundsite .footer-title {
font-size: 20px;
font-weight: 700;
color: var(--brand-white);
margin-bottom: 24px;
letter-spacing: -0.5px;
}
.footer-roundsite .footer-desc {
font-size: 15px;
color: #A0A0A0;
line-height: 1.6;
margin-bottom: 0;
}
.footer-roundsite .footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-roundsite .footer-links li {
margin-bottom: 16px;
}
.footer-roundsite .footer-links li:last-child {
margin-bottom: 0;
}
.footer-roundsite .footer-links a {
color: #A0A0A0;
text-decoration: none;
font-size: 15px;
transition: color 0.2s ease;
}
.footer-roundsite .footer-links a:hover,
.footer-roundsite .footer-links a:focus {
color: var(--brand-primary);
}
.footer-roundsite .footer-socials {
display: flex;
gap: 12px;
}
.footer-roundsite .footer-socials a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border: 1px solid #333333;
border-radius: 50%;
color: var(--brand-white);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
}
.footer-roundsite .footer-socials a:hover,
.footer-roundsite .footer-socials a:focus {
background-color: var(--brand-primary);
border-color: var(--brand-primary);
}
.footer-roundsite .footer-newsletter-wrap {
margin-top: 24px;
}
.footer-roundsite .footer-newsletter {
display: flex;
background-color: var(--brand-white);
border-radius: 6px;
padding: 6px;
gap: 6px;
}
.footer-roundsite .footer-newsletter input {
flex: 1;
border: none;
background: transparent;
padding: 10px 16px;
font-size: 15px;
color: var(--brand-dark);
outline: none;
min-width: 0;
}
.footer-roundsite .footer-newsletter input::placeholder {
color: #888888;
}
.footer-roundsite .footer-newsletter button {
background-color: var(--brand-dark);
color: var(--brand-white);
border: none;
border-radius: 4px;
padding: 10px 24px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.2s ease;
}
.footer-roundsite .footer-newsletter button:hover,
.footer-roundsite .footer-newsletter button:focus {
background-color: var(--brand-primary);
}
.footer-roundsite .footer-bottom {
border-top: 1px solid #222222;
margin-top: 64px;
padding-top: 32px;
}
.footer-roundsite .footer-bottom .copyright {
font-size: 14px;
color: #A0A0A0;
}
.footer-roundsite .footer-bottom-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-roundsite .footer-bottom-links a {
font-size: 14px;
color: #A0A0A0;
text-decoration: none;
transition: color 0.2s ease;
}
.footer-roundsite .footer-bottom-links a:hover,
.footer-roundsite .footer-bottom-links a:focus {
color: var(--brand-white);
}
@media (max-width: 1399px) {
:root { --side-margin: 150px; }
}
@media (max-width: 1199px) {
:root {
--side-margin: 80px;
--section-padding: 100px;
}
.hero-title { font-size: 72px; letter-spacing: -2px; }
.features-title { font-size: 56px; }
}
@media (max-width: 991px) {
:root {
--side-margin: 40px;
--section-padding: 80px;
}
.hero-title { font-size: 56px; }
.hero-subtitle { font-size: 20px; }
.features-title { font-size: 48px; letter-spacing: -1.5px; }
.stats-grid { flex-wrap: wrap; gap: 32px; margin-bottom: 60px; }
.stat-value { font-size: 36px; }
.process-grid::before { display: none; }
.pricing-card {
margin-top: 0;
margin-bottom: 0;
height: 100%;
padding: 40px 32px;
}
.pricing-card.highlight {
padding: 40px 32px;
}
.faq-sticky-wrap {
position: relative;
top: 0;
margin-bottom: 48px;
}
.faq-title { font-size: 48px; }
.footer-roundsite { padding: 60px 0 30px 0; }
.footer-roundsite .footer-bottom { margin-top: 40px; text-align: center; }
.footer-roundsite .footer-bottom .text-md-end { text-align: center !important; margin-top: 16px; }
.gallery-row {
flex-direction: column;
align-items: flex-start;
gap: 24px;
}
.gallery-image-wrapper {
width: 100% !important;
height: 300px !important;
}
.gallery-img {
filter: grayscale(0%);
}
.gallery-tags-wrapper {
grid-template-rows: 1fr;
opacity: 1;
}
}
@media (max-width: 767px) {
:root {
--side-margin: 20px;
--section-padding: 60px;
}
.hero-title { font-size: 42px; letter-spacing: -1px; margin-bottom: 24px; }
.hero-subtitle { font-size: 18px; margin-bottom: 32px; }
.features-title { font-size: 36px; letter-spacing: -1px; }
.features-description { font-size: 16px; margin-bottom: 40px; }
.feature-slider { border-radius: 16px; }
.ticker-wrap { padding: 20px 0; border-radius: 16px; }
.ticker-item { font-size: 18px; padding: 0 20px; }
.ticker-img { width: 30px; height: 30px; }
.stats-grid { flex-direction: column; align-items: center; gap: 24px; margin-bottom: 40px; }
.section-header-center { margin-bottom: 40px; }
.key-feature-card, .process-card { padding: 24px; }
.pricing-card, .pricing-card.highlight { padding: 32px 24px; }
.pricing-price { font-size: 40px; }
.faq-title { font-size: 36px; margin-bottom: 16px; }
.faq-accordion .accordion-button { padding: 20px; font-size: 16px; }
.faq-accordion .accordion-body { padding: 0 20px 20px 20px; }
.footer-roundsite .footer-newsletter { flex-direction: column; padding: 12px; }
.footer-roundsite .footer-newsletter button { width: 100%; padding: 12px; }
.footer-roundsite .footer-socials { margin-bottom: 32px; }
.gallery-item-title { font-size: 28px; }
.gallery-tag { font-size: 13px; padding: 6px 14px; }
.lightbox-close-btn {
top: 16px;
right: 16px;
width: 40px;
height: 40px;
font-size: 18px;
}
}
@media (max-width: 991px) {
.header-roundsite .navbar-collapse {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--brand-white);
z-index: 1060;
display: flex !important;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transform: translateY(-20px);
transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.header-roundsite .navbar-collapse.show-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.header-roundsite .navbar-nav {
align-items: center;
gap: 32px;
}
.header-roundsite .nav-link {
font-size: 24px;
font-weight: 600;
}
.navbar-toggler {
border: none;
background: transparent;
padding: 0;
width: 32px;
height: 24px;
position: relative;
z-index: 1070;
cursor: pointer;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: var(--brand-dark);
transition: transform 0.3s ease, background-color 0.3s ease, top 0.3s ease;
left: 0;
}
.navbar-toggler-icon {
background-image: none;
top: 50%;
transform: translateY(-50%);
}
.navbar-toggler-icon::before {
top: -8px;
}
.navbar-toggler-icon::after {
top: 8px;
}
.navbar-toggler.is-active .navbar-toggler-icon {
background-color: transparent;
}
.navbar-toggler.is-active .navbar-toggler-icon::before {
top: 0;
transform: rotate(45deg);
}
.navbar-toggler.is-active .navbar-toggler-icon::after {
top: 0;
transform: rotate(-45deg);
}
}
.auth-section {
padding: 6rem 0;
}
.logout-btn {
border-color: var(--brand-danger);
color: var(--brand-danger);
background-color: transparent;
font-weight: 600;
transition: all 0.3s ease;
border-radius: 8px;
padding: 10px 20px;
}
.logout-btn:hover {
background-color: var(--brand-danger);
border-color: var(--brand-danger);
color: var(--brand-white);
}
.logout-btn i {
transition: transform 0.3s ease;
}
.logout-btn:focus {
box-shadow: none;
outline: none;
}
.dashboard-main {
background-color: var(--brand-white);
min-height: 100vh;
padding: var(--section-padding) 0;
}
.dashboard-header-title {
font-size: 36px;
font-weight: 700;
color: var(--brand-dark);
text-transform: uppercase;
margin-bottom: 8px;
letter-spacing: -0.5px;
}
.dashboard-header-subtitle {
font-size: 14px;
color: var(--brand-gray);
font-weight: 500;
}
.btn-create-tourney {
background-color: var(--brand-primary);
color: var(--brand-white);
font-weight: 700;
text-transform: uppercase;
padding: 12px 24px;
border-radius: 4px;
font-size: 14px;
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: none;
}
.btn-create-tourney:hover {
background-color: var(--brand-primary);
color: var(--brand-white);
text-decoration: none;
}
.plus-circle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
border: 2px solid var(--brand-white);
border-radius: 50%;
margin-right: 10px;
transition: transform 0.4s ease;
}
.btn-create-tourney:hover .plus-circle {
transform: rotate(180deg);
}
.limit-reached-badge {
background-color: var(--brand-bg-light);
color: var(--brand-gray);
border: 1px solid var(--brand-border);
font-weight: 700;
text-transform: uppercase;
padding: 12px 24px;
border-radius: 4px;
font-size: 12px;
cursor: not-allowed;
}
.dashboard-card {
background-color: var(--brand-white);
border: 1px solid var(--brand-border);
border-radius: 4px;
display: flex;
flex-direction: column;
height: 100%;
transition: none;
}
.dashboard-card-body {
padding: 30px;
flex-grow: 1;
display: block;
}
.status-badge {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 4px;
border: 1px solid;
}
.status-draft {
background-color: var(--brand-bg-light);
color: var(--brand-primary);
border-color: var(--brand-primary);
}
.status-live {
background-color: var(--brand-bg-light);
color: var(--brand-primary);
border-color: var(--brand-primary)
}
.status-archived {
background-color: var(--brand-dark);
color: var(--brand-white);
border-color: var(--brand-dark);
}
.tourney-date {
font-size: 11px;
font-weight: 700;
color: #BBB;
text-transform: uppercase;
}
.tourney-title {
font-size: 20px;
font-weight: 700;
color: var(--brand-dark);
margin: 20px 0 6px 0;
}
.tourney-format {
font-size: 12px;
color: var(--brand-gray);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.dashboard-card-footer {
border-top: 1px solid var(--brand-border);
background-color: #FAFAFA;
padding: 15px 30px;
border-radius: 0 0 4px 4px;
}
.btn-manage {
font-size: 13px;
font-weight: 700;
color: var(--brand-primary);
text-transform: uppercase;
text-decoration: none;
}
.btn-delete {
font-size: 11px;
font-weight: 700;
color: var(--brand-danger);
text-transform: uppercase;
border: none;
background: transparent;
cursor: pointer;
padding: 0;
opacity: 0.6;
transition: opacity 0.2s ease;
}
.btn-delete:hover {
opacity: 1;
}
.empty-state {
border: 2px dashed var(--brand-border);
border-radius: 4px;
background-color: var(--brand-white);
padding: 80px 20px;
text-align: center;
}
.create-main {
background-color: var(--brand-white);
min-height: 100vh;
padding: var(--section-padding) 0;
}
.create-header-title {
font-size: 36px;
font-weight: 700;
color: var(--brand-dark);
text-transform: uppercase;
margin-bottom: 8px;
letter-spacing: -0.5px;
}
.create-header-subtitle {
font-size: 14px;
color: var(--brand-gray);
font-weight: 500;
margin-bottom: 40px;
}
.btn-back {
display: inline-flex;
align-items: center;
padding: 8px 16px;
background-color: var(--brand-primary);
border: 1px solid var(--brand-primary);
color: #fff;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
border-radius: 4px;
margin-bottom: 30px;
transition: border-color 0.2s ease;
}
.btn-back:hover {
border-color: var(--brand-primary);
color: #fff;
}
.form-card {
background-color: var(--brand-white);
border-radius: 4px;
padding: 30px;
height: 100%;
}
.form-card-title {
font-size: 14px;
font-weight: 700;
color: var(--brand-dark);
text-transform: uppercase;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid var(--brand-border);
display: flex;
justify-content: space-between;
align-items: center;
}
.label-custom {
display: block;
font-size: 11px;
font-weight: 700;
color: var(--brand-gray);
text-transform: uppercase;
margin-bottom: 8px;
letter-spacing: 0.5px;
}
.input-custom {
width: 100%;
background-color: #FAFAFA;
border: 1px solid var(--brand-border);
border-radius: 4px;
padding: 10px 15px;
font-size: 14px;
font-weight: 600;
color: var(--brand-dark);
transition: border-color 0.2s ease;
}
.input-custom:focus {
border-color: var(--brand-primary);
outline: none;
}
.input-numeric-box {
background-color: #FAFAFA;
border: 1px solid var(--brand-border);
border-radius: 4px;
padding: 15px;
text-align: center;
}
.input-numeric-box input {
width: 100%;
text-align: center;
background: transparent;
border: none;
font-size: 20px;
font-weight: 800;
color: var(--brand-dark);
}
.bonus-box-off { background-color: #FFF9F5; border: 1px solid #FFE6D5; border-radius: 4px; padding: 15px; }
.bonus-box-def { background-color: #F5F9FF; border: 1px solid #D5E6FF; border-radius: 4px; padding: 15px; }
.btn-submit-tourney {
background-color: var(--brand-dark);
color: var(--brand-white);
font-weight: 700;
text-transform: uppercase;
padding: 12px 40px;
border-radius: 4px;
font-size: 14px;
border: none;
cursor: pointer;
transition: opacity 0.2s ease;
}
.collapse { visibility: visible !important; }
.tournament-main { background-color: var(--brand-white); min-height: 100vh; padding: var(--section-padding) 0; }
.btn-back { display: inline-flex; align-items: center; padding: 8px 16px; background-color: var(--brand-primary); border: 1px solid var(--brand-primary); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; text-decoration: none; border-radius: 4px; margin-bottom: 24px; transition: none; }
.t-header-title { font-size: 28px; font-weight: 700; color: var(--brand-dark); text-transform: uppercase; margin: 0; letter-spacing: -0.5px; }
.btn-action-primary { background-color: var(--brand-primary); color: var(--brand-white); font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 10px 20px; border-radius: 4px; border: none; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: none; cursor: pointer; }
.btn-action-primary:hover { color: var(--brand-white); text-decoration: none; }
.btn-action-dark { background-color: var(--brand-dark); color: var(--brand-white); font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 10px 20px; border-radius: 4px; border: none; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: none; cursor: pointer; width: 100%; }
.btn-action-dark:hover { color: var(--brand-white); text-decoration: none; }
.btn-action-light { background-color: var(--brand-white); color: var(--brand-gray); font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 8px 16px; border-radius: 4px; border: 1px solid var(--brand-border); text-decoration: none; transition: none; display: inline-block; cursor: pointer; }
.btn-action-light.active { background-color: var(--brand-dark); color: var(--brand-white); border-color: var(--brand-dark); }
.btn-action-light.active-primary { background-color: var(--brand-primary); color: var(--brand-white); border-color: var(--brand-primary); }
.btn-danger-outline { background-color: var(--brand-danger); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 8px 16px; border-radius: 4px; border: 1px solid var(--brand-danger); text-decoration: none; transition: none; display: inline-block; cursor: pointer; }
.btn-delete-text { font-size: 10px; font-weight: 700; color: var(--brand-danger); text-transform: uppercase; border: none; background: transparent; cursor: pointer; padding: 0; transition: none; }
.btn-delete-text:hover { color: #d32f2f; text-decoration: underline; }
.nav-tabs-custom { display: flex; gap: 24px; border-bottom: 1px solid var(--brand-border); margin-bottom: 30px; overflow-x: auto; padding-bottom: 2px; }
.nav-tab-item { font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--brand-gray); text-decoration: none; padding: 12px 4px; border-bottom: 2px solid transparent; white-space: nowrap; }
.nav-tab-item:hover { color: var(--brand-dark); text-decoration: none; }
.nav-tab-item.active { color: var(--brand-primary); border-bottom-color: var(--brand-primary); }
.t-card { background-color: var(--brand-white); border: 1px solid var(--brand-border); border-radius: 4px; display: flex; flex-direction: column; height: 100%; }
.t-card-header { border-bottom: 1px solid var(--brand-border); padding: 15px 20px; font-size: 13px; font-weight: 700; color: var(--brand-dark); text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; }
.t-card-body { padding: 20px; flex-grow: 1; }
.t-list-card { background-color: var(--brand-white); border: 1px solid var(--brand-border); border-radius: 4px; }
.t-list-header { background-color: var(--brand-bg-light); border-bottom: 1px solid var(--brand-border); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; }
.list-item { padding: 15px 20px; border-bottom: 1px solid var(--brand-bg-light); display: flex; justify-content: space-between; align-items: center; }
.list-item:last-child { border-bottom: none; }
.list-item:hover { background-color: #FAFAFA; }
.item-name { font-size: 14px; font-weight: 700; color: var(--brand-dark); }
.item-icon { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; background-color: var(--brand-bg-light); color: var(--brand-gray); border-radius: 4px; font-size: 10px; font-weight: 700; margin-right: 12px; border: 1px solid var(--brand-border); }
.status-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; border: 1px solid; }
.status-draft { background-color: var(--brand-bg-light); color: var(--brand-primary); border-color: var(--brand-primary); }
.status-live { background-color: var(--brand-bg-light); color: var(--brand-primary); border-color: var(--brand-primary); }
.input-custom { width: 100%; background-color: var(--brand-white); border: 1px solid var(--brand-border); border-radius: 4px; padding: 10px 15px; font-size: 14px; font-weight: 700; color: var(--brand-dark); margin-bottom: 15px; }
.input-custom:focus { outline: none; border-color: var(--brand-primary); }
.label-custom { display: block; font-size: 11px; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; margin-bottom: 8px; }
.pool-container { background-color: var(--brand-white); border: 1px solid var(--brand-border); border-radius: 4px; margin-bottom: 20px; }
.pool-header { background-color: var(--brand-bg-light); border-bottom: 1px solid var(--brand-border); padding: 10px 15px; font-size: 12px; font-weight: 700; color: var(--brand-dark); text-transform: uppercase; }
.drop-zone { min-height: 50px; }
.draggable-item { padding: 10px 15px; font-size: 13px; font-weight: 700; color: var(--brand-dark); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--brand-bg-light); background: var(--brand-white); cursor: move; position: relative; }
.draggable-item:last-child { border-bottom: none; }
.draggable-item:hover { background-color: #FFF9F5; }
.drag-highlight { border: 2px solid var(--brand-primary) !important; }
.dragging-opacity { opacity: 0.5; }
.radio-box input[type="radio"] { display: none; }
.radio-box .box-content { display: flex; align-items: center; justify-content: center; border: 1px solid var(--brand-border); background-color: var(--brand-white); color: var(--brand-gray); font-weight: 700; font-size: 12px; text-transform: uppercase; padding: 10px 20px; border-radius: 4px; cursor: pointer; transition: none; }
.radio-box input[type="radio"]:checked + .box-content { border-color: var(--brand-primary); background-color: #FFF9F5; color: var(--brand-primary); }
.radio-box-small .box-content { width: 48px; height: 40px; padding: 0; font-size: 14px; }
.match-card { background-color: var(--brand-white); border: 1px solid var(--brand-border); border-radius: 4px; padding: 20px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; position: relative; flex-wrap: wrap; gap: 15px; }
.match-group-label { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background-color: var(--brand-bg-light); color: var(--brand-gray); font-size: 9px; font-weight: 700; padding: 3px 12px; border-radius: 0 0 4px 4px; border: 1px solid var(--brand-border); border-top: none; text-transform: uppercase; }
.match-input-time { background: transparent; border: none; border-bottom: 1px dashed var(--brand-gray); font-size: 13px; font-weight: 700; width: 60px; text-align: center; color: var(--brand-dark); padding: 2px 0; }
.match-input-time:focus { outline: none; border-color: var(--brand-primary); }
.match-select-pitch { font-size: 10px; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; border: none; background: transparent; cursor: pointer; padding: 0; }
.match-select-pitch:focus { outline: none; }
.vs-badge { font-size: 9px; font-weight: 900; color: #CCC; background: #FAFAFA; border: 1px solid var(--brand-border); padding: 2px 6px; border-radius: 4px; }
.table-custom { width: 100%; text-align: left; font-size: 12px; }
.table-custom th { padding: 12px 10px; text-transform: uppercase; font-weight: 700; color: var(--brand-gray); border-bottom: 1px solid var(--brand-bg-light); }
.table-custom td { padding: 12px 10px; border-bottom: 1px solid var(--brand-bg-light); font-weight: 700; color: var(--brand-dark); }
.table-custom tr:last-child td { border-bottom: none; }
.podium-box { border: 1px solid var(--brand-border); background-color: var(--brand-white); border-radius: 4px; padding: 40px 20px; text-align: center; margin-bottom: 30px; }
.podium-title { font-size: 14px; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; margin-bottom: 30px; letter-spacing: 1px; border-bottom: 1px solid var(--brand-border); padding-bottom: 15px; }
.podium-circle { display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 900; margin: 0 auto 15px auto; }
.podium-1 { width: 80px; height: 80px; background-color: #FFF9F5; border: 3px solid #FDBA74; color: var(--brand-primary); font-size: 28px; }
.podium-2, .podium-3 { width: 60px; height: 60px; background-color: #FAFAFA; border: 2px solid var(--brand-border); color: var(--brand-gray); font-size: 20px; }
.podium-block { background-color: var(--brand-bg-light); border-top: 1px solid var(--brand-border); width: 100%; border-radius: 4px 4px 0 0; margin-top: 15px; }
@media (max-width: 991.98px) {
#mainNav:not(.show-menu) {
visibility: hidden;
pointer-events: none;
}
#mainNav.show-menu {
visibility: visible;
pointer-events: auto;
}
.header-roundsite {
pointer-events: none;
}
.header-roundsite .custom-container {
pointer-events: auto;
}
}