@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Red+Hat+Display:wght@400;500;700&display=swap');

*, *::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: #f8f5f2;
    color: #2c3e50;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bungee Shade', cursive;
    font-weight: normal;
    margin-bottom: 20px;
    color: #e74c3c;
}

.wqd_hidden {
    display: none !important;
}

.wqd_skyline-container {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.wqd_skyline-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.wqd_skyline-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wqd_skyline-title {
    font-size: 28px;
    margin-bottom: 0;
    background: linear-gradient(to right, #f1c40f, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wqd_titleGlow 2s ease-in-out infinite alternate;
}

@keyframes wqd_titleGlow {
    0% { opacity: 0.9; }
    100% { opacity: 1; }
}

.wqd_skyline-tagline {
    font-size: 14px;
    color: #ecf0f1;
    margin-top: -5px;
}

.wqd_skyline-navigation {
    flex-grow: 1;
    margin: 0 30px;
}

.wqd_skyline-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.wqd_skyline-item {
    margin: 0 12px;
    position: relative;
}

.wqd_skyline-item:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f1c40f;
    transition: width 0.3s ease;
}

.wqd_skyline-item:hover:after {
    width: 100%;
}

.wqd_skyline-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.wqd_skyline-link:hover {
    color: #f1c40f;
}

.wqd_skyline-link i {
    margin-right: 8px;
    font-size: 18px;
}

.wqd_skyline-actions {
    display: flex;
    align-items: center;
}

.wqd_skyline-register {
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.wqd_skyline-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.wqd_skyline-register i {
    margin-right: 8px;
    font-size: 18px;
}

.wqd_skyline-alert {
    background-color: rgba(231, 76, 60, 0.1);
    border-top: 1px solid rgba(231, 76, 60, 0.3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.wqd_skyline-alert i {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 18px;
}

.wqd_skyline-alert p {
    margin: 0;
}

.wqd_dreamscape-container {
    height: auto;
    background: linear-gradient(135deg, #f8f5f2 0%, #dfe6e9 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.wqd_dreamscape-wrapper {
    max-width: 1200px;
    min-height: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.wqd_dreamscape-content {
    flex: 1;
    max-width: 600px;
    height: auto;
    padding-right: 40px;
    animation: wqd_fadeInLeft 1s ease-out;
}

.wqd_dreamscape-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    background: linear-gradient(to right, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wqd_dreamscape-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.wqd_dreamscape-button {
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-bottom: 30px;
}

.wqd_dreamscape-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.wqd_dreamscape-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.wqd_dreamscape-button:hover i {
    transform: translateX(5px);
}

.wqd_dreamscape-badge {
    height: auto;
    display: inline-flex;
    align-items: center;
    background: rgba(46, 204, 113, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
    color: #2ecc71;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.wqd_dreamscape-badge i {
    margin-right: 8px;
    font-size: 18px;
}

.wqd_dreamscape-visual {
    flex: 1;
    max-width: 500px;
    height: 400px;
    position: relative;
    animation: wqd_fadeInRight 1s ease-out;
}

.wqd_dreamscape-coin {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #f1c40f, #e67e22);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
    animation: wqd_coinSpin 8s linear infinite;
}

.wqd_dreamscape-sparkle {
    position: absolute;
    width: 250px;
    height: 250px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="%23f1c40f" stroke-width="1" d="M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z"/></svg>') center no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: wqd_sparklePulse 3s ease-in-out infinite;
}

@keyframes wqd_coinSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes wqd_sparklePulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
}

@keyframes wqd_fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes wqd_fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.wqd_goldrush-container {
    padding: 100px 20px;
    background-color: #fff;
    position: relative;
}

.wqd_goldrush-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wqd_goldrush-media {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    height: 500px;
    position: relative;
    margin-right: 50px;
    animation: wqd_fadeInUp 1s ease-out;
}

.wqd_goldrush-map {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23f8f5f2" stroke="%23f39c12" stroke-width="1" d="M10,10 L90,10 L90,90 L10,90 Z M30,30 Q50,20 70,30 T90,50 Q80,70 70,60 T30,70 Q20,50 30,30 Z"/></svg>') center no-repeat;
    background-size: contain;
    position: relative;
    border: 15px solid #f8f5f2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wqd_goldrush-nugget {
    position: absolute;
    width: 80px;
    height: 60px;
    background: radial-gradient(ellipse at center, #f1c40f 0%, #e67e22 100%);
    border-radius: 50%;
    bottom: 50px;
    right: 50px;
    transform: rotate(30deg);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.5);
    animation: wqd_nuggetGlow 2s ease-in-out infinite alternate;
}

@keyframes wqd_nuggetGlow {
    0% { box-shadow: 0 5px 15px rgba(241, 196, 15, 0.5); }
    100% { box-shadow: 0 5px 25px rgba(241, 196, 15, 0.8); }
}

.wqd_goldrush-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    animation: wqd_fadeInUp 1s ease-out 0.2s both;
}

.wqd_goldrush-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.wqd_goldrush-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
}

.wqd_goldrush-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.wqd_goldrush-stat {
    flex: 1;
    min-width: 150px;
    background: #f8f5f2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.wqd_goldrush-stat:hover {
    transform: translateY(-5px);
}

.wqd_goldrush-stat i {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.wqd_goldrush-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.wqd_goldrush-caption {
    font-size: 14px;
    color: #7f8c8d;
}

.wqd_winpath-container {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.wqd_winpath-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.wqd_winpath-title {
    text-align: center;
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.wqd_winpath-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #f1c40f, #e74c3c);
    border-radius: 3px;
}

.wqd_winpath-subtitle {
    text-align: center;
    font-size: 18px;
    color: #bdc3c7;
    margin-bottom: 60px;
}

.wqd_winpath-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding: 0 50px;
}

.wqd_winpath-steps:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #f1c40f, #e74c3c);
    transform: translateX(-50%);
    border-radius: 4px;
}

.wqd_winpath-step {
    display: flex;
    align-items: center;
    position: relative;
    animation: wqd_fadeInUp 0.8s ease-out;
}

.wqd_winpath-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.wqd_winpath-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1c40f 0%, #e74c3c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wqd_winpath-details {
    flex: 1;
    padding: 0 40px;
}

.wqd_winpath-heading {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.wqd_winpath-desc {
    font-size: 16px;
    color: #ecf0f1;
}

.wqd_winpath-graphic {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px dashed #f1c40f;
}

.wqd_winpath-graphic i {
    font-size: 40px;
    color: #f1c40f;
}

.wqd_winpath-button {
    display: block;
    margin: 60px auto 0;
    background: linear-gradient(to right, #f1c40f, #e74c3c);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.wqd_winpath-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.wqd_legendary-container {
    padding: 100px 20px;
    background-color: #f8f5f2;
}

.wqd_legendary-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.wqd_legendary-title {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.wqd_legendary-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.wqd_legendary-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.wqd_legendary-card {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wqd_fadeInUp 0.8s ease-out;
}

.wqd_legendary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wqd_legendary-image {
    width: 100%;
    height: 250px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.wqd_legendary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wqd_legendary-card:hover .wqd_legendary-image img {
    transform: scale(1.05);
}

.wqd_legendary-content {
    padding: 25px;
}

.wqd_legendary-name {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.wqd_legendary-location {
    font-size: 14px;
    color: #e74c3c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.wqd_legendary-location i {
    margin-right: 5px;
}

.wqd_legendary-rating {
    color: #f1c40f;
    margin-bottom: 15px;
}

.wqd_legendary-quote {
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.wqd_legendary-quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    line-height: 1;
    color: rgba(231, 76, 60, 0.2);
}

.wqd_legendary-amount {
    font-weight: 700;
    color: #e74c3c;
    font-size: 18px;
}

.wqd_perks-container {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    color: white;
}

.wqd_perks-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}

.wqd_perks-title {
    text-align: center;
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.wqd_perks-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.wqd_perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.wqd_perks-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wqd_fadeInUp 0.8s ease-out;
}

.wqd_perks-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.wqd_perks-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wqd_perks-icon i {
    font-size: 30px;
    color: white;
}

.wqd_perks-heading {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.wqd_perks-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.wqd_fairdinkum-container {
    padding: 100px 20px;
    background-color: white;
}

.wqd_fairdinkum-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.wqd_fairdinkum-title {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.wqd_fairdinkum-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.wqd_fairdinkum-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.wqd_fairdinkum-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #ecf0f1;
}

.wqd_fairdinkum-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wqd_fairdinkum-question:hover {
    background: #f8f5f2;
}

.wqd_fairdinkum-question i {
    transition: transform 0.3s ease;
}

.wqd_fairdinkum-item.active .wqd_fairdinkum-question i {
    transform: rotate(45deg);
}

.wqd_fairdinkum-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f5f2;
}

.wqd_fairdinkum-item.active .wqd_fairdinkum-answer {
    max-height: 300px;
}

.wqd_fairdinkum-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #34495e;
}

.wqd_wiseplay-container {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f5f2 0%, #dfe6e9 100%);
}

.wqd_logos-wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wqd_wiseplay-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wqd_wiseplay-content {
    flex: 1;
    min-width: 270px;
    max-width: 600px;
    padding-right: 40px;
}

.wqd_wiseplay-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.wqd_wiseplay-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.wqd_wiseplay-list {
    list-style: none;
    margin-bottom: 30px;
}

.wqd_wiseplay-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.wqd_wiseplay-list i {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 20px;
    margin-top: 2px;
}

.wqd_wiseplay-contact {
    font-size: 16px;
    color: #34495e;
}

.wqd_wiseplay-contact a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.wqd_wiseplay-contact a:hover {
    text-decoration: underline;
}

.wqd_wiseplay-media {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    height: 400px;
    position: relative;
}

.wqd_wiseplay-balance {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="%23e74c3c" stroke-width="2" d="M20,50 Q50,20 80,50 T20,50 Z" opacity="0.2"/></svg>') center no-repeat;
    background-size: contain;
    position: relative;
    animation: wqd_balancePulse 3s ease-in-out infinite;
}

@keyframes wqd_balancePulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.wqd_footer-container {
    background: #2c3e50;
    color: white;
    padding-top: 60px;
}

.wqd_footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wqd_footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.wqd_footer-brand {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.wqd_footer-title {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
    background: linear-gradient(to right, #f1c40f, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wqd_footer-tagline {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.wqd_footer-connect, .wqd_footer-contact {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.wqd_footer-connect {
    background: linear-gradient(to right, #f1c40f, #e74c3c);
    color: white;
    border: none;
}

.wqd_footer-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.wqd_footer-contact {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.wqd_footer-contact:hover {
    background: white;
    color: #2c3e50;
}

.wqd_footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.wqd_footer-column {
    flex: 1;
    min-width: 150px;
}

.wqd_footer-heading {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.wqd_footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f1c40f;
}

.wqd_footer-list {
    list-style: none;
}

.wqd_footer-list li {
    margin-bottom: 12px;
}

.wqd_footer-list a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.wqd_footer-list a:hover {
    color: white;
}

.wqd_footer-list i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.wqd_footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wqd_footer-social {
    display: flex;
    gap: 15px;
}

.wqd_footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.wqd_footer-social-link:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.wqd_footer-legal {
    flex: 1;
    min-width: 280px;
    font-size: 12px;
    color: #7f8c8d;
    text-align: center;
}

.wqd_footer-payments {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #bdc3c7;
}

.wqd_entry-overlay, .wqd_connect-overlay, .wqd_contact-overlay, .wqd_success-overlay, 
.wqd_agegate-overlay, .wqd_cookie-overlay, .wqd_cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.wqd_entry-overlay.active, .wqd_connect-overlay.active, .wqd_contact-overlay.active, 
.wqd_success-overlay.active, .wqd_agegate-overlay.active, .wqd_cookie-overlay.active,
.wqd_cookie-settings-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wqd_entry-container, .wqd_connect-container, .wqd_contact-container, 
.wqd_success-container, .wqd_agegate-container, .wqd_cookie-container,
.wqd_cookie-settings-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.wqd_entry-overlay.active .wqd_entry-container,
.wqd_connect-overlay.active .wqd_connect-container,
.wqd_contact-overlay.active .wqd_contact-container,
.wqd_success-overlay.active .wqd_success-container,
.wqd_agegate-overlay.active .wqd_agegate-container,
.wqd_cookie-overlay.active .wqd_cookie-container,
.wqd_cookie-settings-overlay.active .wqd_cookie-settings-container {
    transform: translateY(0);
}

.wqd_entry-brand, .wqd_connect-icon, 
.wqd_contact-icon, .wqd_success-icon {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.wqd_contact-miniicon, .wqd_connect-miniicon, .wqd_contact-miniicons {
    position: absolute;
    top: 0;
    left: 0;    
    height: 48px;
    padding: 10px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wqd_contact-miniicons {
    height: 120px;
}

.wqd_contact-miniicon i, .wqd_connect-miniicon i, .wqd_contact-miniicons i {
    font-size: 25px;
}

.wqd_entry-brand h2, .wqd_connect-title, .wqd_contact-title, .wqd_success-title {
    color: white;
    margin-bottom: 5px;
}

.wqd_entry-brand p, .wqd_connect-note, .wqd_contact-note, .wqd_success-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    padding-bottom: 25px;
}

.wqd_entry-form, .wqd_connect-form, .wqd_contact-form {
    padding: 30px;
}

.wqd_entry-close, .wqd_connect-close, .wqd_contact-close, .wqd_success-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    transition: background 0.3s ease;
}

.wqd_entry-close:hover, .wqd_connect-close:hover, .wqd_contact-close:hover, .wqd_success-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.wqd_entry-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.wqd_entry-group {
    margin-bottom: 20px;
    position: relative;
}

.wqd_entry-hint {
    font-size: 12px;
    color: #e74c3c;
    margin-bottom: 5px;
    min-height: 18px;
}

.wqd_entry-input, .wqd_entry-select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.wqd_entry-input:focus, .wqd_entry-select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.wqd_entry-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 20px;
}

.wqd_entry-select {
    appearance: none;
    background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237f8c8d"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.wqd_entry-options {
    margin: 30px 0;
}

.wqd_entry-option-group {
    margin-bottom: 15px;
}

.wqd_entry-option-row {
    display: flex;
    align-items: center;
}

.wqd_entry-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #e74c3c;
}

.wqd_entry-label {
    font-size: 14px;
    color: #34495e;
}

.wqd_entry-link {
    color: #3498db;
    text-decoration: none;
}

.wqd_entry-link:hover {
    text-decoration: underline;
}

.wqd_entry-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_entry-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.wqd_entry-submit:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wqd_connect-icon, .wqd_contact-icon, .wqd_success-icon {
    padding: 40px 30px;
}

.wqd_connect-icon i, .wqd_contact-icon i, .wqd_success-icon i {
    font-size: 60px;
}

.wqd_connect-title, .wqd_contact-title, .wqd_success-title {
    font-size: 28px;
}

.wqd_connect-group, .wqd_contact-group {
    margin-bottom: 20px;
    position: relative;
}

.wqd_connect-input, .wqd_contact-input, .wqd_contact-textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.wqd_connect-input:focus, .wqd_contact-input:focus, .wqd_contact-textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.wqd_contact-textarea {
    min-height: 120px;
    resize: vertical;
}

.wqd_connect-submit, .wqd_contact-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_connect-submit:hover, .wqd_contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.wqd_connect-note, .wqd_contact-note {
    text-align: center;
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 14px;
}

.wqd_success-container {
    text-align: center;
}

.wqd_success-message {
    padding: 0 30px 30px;
    color: #34495e;
}

.wqd_success-button {
    padding: 12px 30px;
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.wqd_success-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.wqd_agegate-container {
    width: 100%;
}

.wqd_agegate-content {
    padding: 40px;
    text-align: center;
}

.wqd_agegate-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.wqd_agegate-text {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 30px;
}

.wqd_agegate-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.wqd_agegate-confirm {
    padding: 12px 30px;
    background: linear-gradient(to right, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_agegate-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.wqd_agegate-exit {
    padding: 12px 30px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_agegate-exit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.wqd_agegate-warning {
    font-size: 14px;
    color: #7f8c8d;
}

.wqd_cookie-content {
    padding: 30px;
    text-align: center;
}

.wqd_cookie-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.wqd_cookie-text {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 25px;
}

.wqd_cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wqd_cookie-accept {
    padding: 12px 30px;
    background: linear-gradient(to right, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_cookie-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.wqd_cookie-settings {
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_cookie-settings:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.wqd_cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.wqd_cookie-link:hover {
    text-decoration: underline;
}

.wqd_cookie-settings-content {
    padding: 30px;
}

.wqd_cookie-settings-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.wqd_cookie-options {
    margin-bottom: 30px;
}

.wqd_cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.wqd_cookie-option:last-child {
    border-bottom: none;
}

.wqd_cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wqd_cookie-option-header span {
    font-weight: 600;
    color: #2c3e50;
}

.wqd_cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.wqd_cookie-toggle.disabled {
    opacity: 0.6;
}

.wqd_cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wqd_cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #bdc3c7;
    transition: .4s;
    border-radius: 24px;
}

.wqd_cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.wqd_cookie-toggle input:checked + .wqd_cookie-toggle-slider {
    background-color: #2ecc71;
}

.wqd_cookie-toggle input:checked + .wqd_cookie-toggle-slider:before {
    transform: translateX(26px);
}

.wqd_cookie-option-desc {
    font-size: 14px;
    color: #7f8c8d;
}

.wqd_cookie-settings-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.wqd_cookie-settings-confirm {
    padding: 12px 30px;
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_cookie-settings-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.wqd_cookie-settings-accept {
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wqd_cookie-settings-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

@media (max-width: 1024px) {
    .wqd_skyline-menu {
        justify-content: flex-start;
    }
    
    .wqd_dreamscape-wrapper, .wqd_goldrush-wrapper {
        flex-direction: column;
    }
    
    .wqd_dreamscape-content, .wqd_goldrush-content {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .wqd_dreamscape-visual, .wqd_goldrush-media {
        max-width: 100%;
    }
    
    .wqd_winpath-steps:before {
        left: 30px;
    }
    
    .wqd_winpath-step {
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .wqd_winpath-details {
        padding: 0 20px 0 70px !important;
    }
}

@media (max-width: 768px) {
    .wqd_skyline-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wqd_skyline-navigation {
        margin: 20px 0;
    }
    
    .wqd_skyline-menu {
        flex-direction: column;
    }
    
    .wqd_skyline-item {
        margin: 5px 0;
    }
    
    .wqd_dreamscape-title, .wqd_goldrush-title, .wqd_winpath-title, 
    .wqd_legendary-title, .wqd_perks-title, .wqd_fairdinkum-title {
        font-size: 36px;
    }
    
    .wqd_winpath-graphic {
        display: none;
    }
    
    .wqd_footer-top {
        flex-direction: column;
    }
    
    .wqd_footer-brand {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .wqd_footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .wqd_footer-social, .wqd_footer-payments {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wqd_goldrush-container, .wqd_wiseplay-container,
    .wqd_perks-container, .wqd_fairdinkum-container {
        padding: 100px 3px;
    }

    .wqd_goldrush-map {
        width: 280px;
        height: 280px;
        margin: 15px auto;
    }

    .wqd_wiseplay-balance {
        width: 90%;
        height: 90%;
    }

    .wqd_goldrush-media {
        margin-right: 5px;
    }

    .wqd_dreamscape-title, .wqd_goldrush-title, .wqd_winpath-title, 
    .wqd_legendary-title, .wqd_perks-title, .wqd_fairdinkum-title,
    .wqd_wiseplay-wrapper {
        font-size: 20px;
        text-align: center;
    }

    .wqd_skyline-title,
    .wqd_goldrush-title,
    .wqd_agegate-title,
    .wqd_footer-title {
        font-size: 18px;
        text-align: center;
    }

    .wqd_entry-brand h2 {
        padding-top: 20px;
        font-size: 18px;
        text-align: center;
    }

    .wqd_skyline-tagline,
    .wqd_goldrush-text {
        padding-top: 10px;
        font-size: 16px;
        text-align: center;
    }

    .wqd_winpath-container {
        padding: 100px 11px;
    }


    .wqd_winpath-steps {
        width: 290px !important;
        padding: 0 !important;
    }

    .wqd_winpath-details {
        width: 220px !important;
        padding: 0 5px 0 10px !important;
    }

    .wqd_winpath-steps:before {
        left: -5px;
    }

    .wqd_wiseplay-content {
        padding-right: 5px;
    }

    .wqd_perks-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .wqd_dreamscape-button, .wqd_winpath-button, .wqd_entry-submit, 
    .wqd_connect-submit, .wqd_contact-submit, .wqd_success-button {
        width: 100%;
    }
    
    .wqd_agegate-buttons, .wqd_cookie-buttons, .wqd_cookie-settings-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .wqd_agegate-confirm, .wqd_agegate-exit, .wqd_cookie-accept, 
    .wqd_cookie-settings, .wqd_cookie-settings-confirm, 
    .wqd_cookie-settings-accept {
        width: 100%;
    }

    .wqd_footer-legal {
        min-width: 270px;
    }
}

@keyframes wqd_fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.wqdpage_main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.wqdpage_hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(231, 76, 60, 0.1) 100%);
    border-radius: 12px;
}

.wqdpage_hero-section h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 0;
}

.wqdpage_hero-section i {
    vertical-align: middle;
    margin-right: 15px;
    font-size: 48px;
    color: #e74c3c;
}

.wqdpage_policy-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.wqdpage_policy-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wqdpage_policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.wqdpage_policy-item i {
    font-size: 32px;
    color: #3498db;
    margin-bottom: 20px;
    display: inline-block;
}

.wqdpage_policy-item h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
}

.wqdpage_policy-item p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .wqdpage_policy-section {
        grid-template-columns: 1fr;
    }
    
    .wqdpage_hero-section h2 {
        font-size: 32px;
    }
    
    .wqdpage_hero-section i {
        font-size: 36px;
    }
}

.wqdcookie_main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.wqdcookie_hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 12px;
    border-left: 5px solid #3498db;
}

.wqdcookie_hero-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.wqdcookie_hero-section i {
    vertical-align: middle;
    margin-right: 15px;
    color: #e74c3c;
}

.wqdcookie_hero-section p {
    color: #7f8c8d;
    font-size: 16px;
}

.wqdcookie_policy-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.wqdcookie_policy-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 3px solid #3498db;
    transition: transform 0.3s ease;
}

.wqdcookie_policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wqdcookie_policy-item i {
    font-size: 28px;
    color: #f39c12;
    margin-bottom: 15px;
    display: block;
}

.wqdcookie_policy-item h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.wqdcookie_policy-item p {
    color: #34495e;
    font-size: 15px;
    line-height: 1.7;
}

.wqdcookie_consent-box {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.wqdcookie_consent-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.wqdcookie_consent-content i {
    font-size: 24px;
    color: #e74c3c;
}

.wqdcookie_consent-content p {
    margin: 0;
    color: #2c3e50;
    font-size: 15px;
}

.wqdcookie_consent-content a {
    color: #3498db;
    text-decoration: underline;
}

.wqdcookie_consent-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.wqdcookie_btn-accept {
    background: linear-gradient(to right, #3498db, #2ecc71);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.wqdcookie_btn-settings {
    background: transparent;
    color: #3498db;
    border: 1px solid #3498db;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 768px) {
    .wqdcookie_policy-section {
        grid-template-columns: 1fr;
    }
    
    .wqdcookie_hero-section h2 {
        font-size: 28px;
    }
    
    .wqdcookie_consent-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .wqdcookie_consent-buttons {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

.wqdresponsible_main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Red Hat Display', sans-serif;
}

.wqdresponsible_hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(241, 196, 15, 0.1) 100%);
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.wqdresponsible_hero-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.wqdresponsible_hero-section i {
    vertical-align: middle;
    margin-right: 15px;
    color: #e74c3c;
}

.wqdresponsible_hero-section p {
    color: #7f8c8d;
    font-size: 18px;
    font-weight: 500;
}

.wqdresponsible_tips-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.wqdresponsible_tip-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 3px solid #f39c12;
    transition: transform 0.3s ease;
}

.wqdresponsible_tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.wqdresponsible_tip-card i {
    font-size: 28px;
    color: #e74c3c;
    margin-bottom: 15px;
    display: block;
}

.wqdresponsible_tip-card h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.wqdresponsible_tip-card p {
    color: #34495e;
    font-size: 15px;
    line-height: 1.7;
}

.wqdresponsible_emergency-banner {
    background-color: #e74c3c;
    color: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.wqdresponsible_emergency-banner i {
    font-size: 32px;
}

.wqdresponsible_emergency-banner p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.wqdresponsible_emergency-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 768px) {
    .wqdresponsible_tips-section {
        grid-template-columns: 1fr;
    }
    
    .wqdresponsible_hero-section h2 {
        font-size: 25px;
    }
    
    .wqdresponsible_emergency-banner {
        flex-direction: column;
        text-align: center;
    }
}