styles.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html{
  7. scroll-behavior: smooth;
  8. }
  9. body {
  10. color: white;
  11. background: #3E3E40;
  12. font-size: 18px;
  13. font-family: Arial, Helvetica, Verdana, sans-serif;
  14. scroll-behavior: smooth;
  15. }
  16. ul,ol{
  17. margin-top: 20px;
  18. margin-bottom: 20px;
  19. }
  20. ul{
  21. margin-left: 15px;
  22. }
  23. ol{
  24. margin-left: 20px;
  25. }
  26. .container {
  27. max-width: 1310px;
  28. width: 100%;
  29. height: 100%;
  30. margin: 0 auto;
  31. display: flex;
  32. align-items: center;
  33. justify-content: space-between;
  34. position: relative;
  35. padding: 0 16px;
  36. }
  37. .header {
  38. background: #595959;
  39. position: fixed;
  40. width: 100%;
  41. top: 0;
  42. height: 70px;
  43. z-index: 1;
  44. }
  45. .header__logo{
  46. min-width: 33%;
  47. }
  48. .header__menu{
  49. min-width: 33%;
  50. display: flex;
  51. justify-content: center;
  52. }
  53. .header__logo img{
  54. height: 36px;
  55. cursor: pointer;
  56. }
  57. .header__btns{
  58. min-width: 33%;
  59. }
  60. @media only screen and (max-width: 768px) {
  61. .header__logo img{
  62. height: 28px;
  63. }
  64. .main__title {
  65. font-size: 35px!important;
  66. text-align: center;
  67. }
  68. h1,h2,h3,h4,h5,h6{
  69. text-align: center;
  70. }
  71. }
  72. .header__menu-list li{
  73. cursor: pointer;
  74. }
  75. .header__menu-list {
  76. list-style: none;
  77. display: flex;
  78. gap: 40px;
  79. }
  80. .header__btns {
  81. display: flex;
  82. align-items: center;
  83. justify-content: flex-end;
  84. /* gap: 15px; */
  85. }
  86. .main {
  87. margin-top: 70px;
  88. margin-bottom: 70px;
  89. }
  90. .main__title {
  91. font-size: 35px;
  92. margin: 15px 0;
  93. }
  94. .main .container {
  95. flex-direction: column;
  96. }
  97. .header__login {
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. padding: 0 10px;
  102. white-space: nowrap;
  103. height: 42px;
  104. border-radius: 6px;
  105. font-size: 16px;
  106. color: white;
  107. text-decoration: none;
  108. cursor: pointer;
  109. transition: 0.3s ease-in-out;
  110. background: #404040;
  111. margin-right: 15px;
  112. }
  113. @media only screen and (max-width: 768px) {
  114. .footer__content{
  115. flex-direction: column;
  116. }
  117. .footer__bottom-imgs{
  118. flex-wrap: wrap;
  119. }
  120. .header .container{
  121. width: initial;
  122. }
  123. .container{
  124. width: auto;
  125. }
  126. .pulse__btn.main__btn{
  127. height: 59px!important;
  128. }
  129. .header__menu-list{
  130. /* background: #595959; */
  131. display: flex;
  132. flex-direction: column;
  133. padding-left: 15px;
  134. border-top: 1px solid white;
  135. gap: 0;
  136. }
  137. .header__menu-list li{
  138. text-transform: uppercase;
  139. padding: 20px 0;
  140. }
  141. .footer__menu li {
  142. text-align: center;
  143. }
  144. .header__login {
  145. height: 38px;
  146. max-width: none;
  147. width: auto;
  148. padding: 0 10px;
  149. white-space: normal;
  150. text-align: center;
  151. margin-right: 5px;
  152. }
  153. .header__mobile-menu{
  154. margin-left: 5px!important;
  155. }
  156. .pulse__btn{
  157. height: 38px!important;
  158. max-width: none;
  159. width: auto;
  160. padding: 0 10px;
  161. white-space: normal;
  162. text-align: center;
  163. }
  164. /* html,body{
  165. overflow-x: hidden;
  166. } */
  167. }
  168. .pulse__btn {
  169. display: flex;
  170. align-items: center;
  171. justify-content: center;
  172. padding: 0 10px;
  173. white-space: nowrap;
  174. height: 42px;
  175. border-radius: 6px;
  176. font-size: 16px;
  177. color: #090909;
  178. text-decoration: none;
  179. cursor: pointer;
  180. -webkit-animation: pulse 2s infinite;
  181. animation: pulse 2s infinite;
  182. background: #FFDA16;
  183. font-weight: 600;
  184. }
  185. /* .pulse__btn:hover{
  186. background: #fff61e;
  187. transition: 0.3s ease-in-out;
  188. } */
  189. .main__banner{
  190. cursor: pointer;
  191. }
  192. .main__text{
  193. color: var(--text-color);
  194. font-size: 20px;
  195. line-height: 140%;
  196. margin: 15px 0px;
  197. }
  198. .main__btn{
  199. max-width: 300px;
  200. height: 60px;
  201. width: 100%;
  202. font-size: 18px;
  203. }
  204. .footer{
  205. background: #595959;
  206. padding: 20px 0;
  207. }
  208. .footer .container{
  209. flex-direction: column;
  210. }
  211. .footer__bottom-imgs{
  212. display: flex;
  213. list-style-type: none;
  214. gap: 20px;
  215. margin-bottom: 10px;
  216. }
  217. .footer__copyright{
  218. text-align: center;
  219. color: white;
  220. font-size: 13px;
  221. }
  222. .footer__content{
  223. display: flex;
  224. align-items: center;
  225. justify-content: space-between;
  226. width: 100%;
  227. margin: 25px 0;
  228. }
  229. .footer__menu ul{
  230. list-style: none;
  231. }
  232. .footer__logo img{
  233. height: 60px;
  234. cursor: pointer;
  235. }
  236. .footer__menu li{
  237. margin: 15px 0;
  238. }
  239. .accordion-container {
  240. width: 100%;
  241. margin-top: 35px;
  242. }
  243. .accordion-item {
  244. background-color: #FFFFFF; /* White background for items */
  245. border: 1px solid #E0E0E0; /* Light border */
  246. border-radius: 8px;
  247. margin-bottom: 10px;
  248. overflow: hidden;
  249. height: fit-content;
  250. }
  251. .accordion-header {
  252. background-color: #595959; /* Soft purple */
  253. padding: 20px 32px;
  254. border: none;
  255. width: 100%;
  256. text-align: left;
  257. cursor: pointer;
  258. outline: none;
  259. display: flex;
  260. justify-content: space-between;
  261. align-items: center;
  262. border-radius: 8px;
  263. transition: background-color 0.3s ease;
  264. color: white;
  265. font-family: Arial, Helvetica, Verdana, sans-serif;
  266. font-size: 18px;
  267. font-style: normal;
  268. font-weight: 700;
  269. line-height: normal;
  270. }
  271. .accordion-header:hover {
  272. /* background: #FFDA16; */
  273. color: black;
  274. }
  275. .accordion-header:hover .icon {
  276. color: white;
  277. opacity: 1;
  278. }
  279. .accordion-content {
  280. background-color: #595959; /* Very light grey for content */
  281. overflow: hidden;
  282. padding: 0 32px;
  283. max-height: 0;
  284. transition: max-height 0.3s ease;
  285. }
  286. .accordion-content p {
  287. margin: 15px 0;
  288. line-height: 1.5;
  289. }
  290. .icon {
  291. transition: transform 0.3s ease;
  292. font-weight: 100;
  293. opacity: 0.6;
  294. font-size: 33px;
  295. }
  296. .active .icon {
  297. transform: rotate(45deg);
  298. }
  299. .accordion-header.active {
  300. /* background: #FFDA16; */
  301. color: black;
  302. border-bottom-left-radius: 0;
  303. border-bottom-right-radius: 0;
  304. }
  305. .accordion-header.active .icon {
  306. opacity: 1;
  307. }
  308. .accordion-container {
  309. width: 100%;
  310. display: grid;
  311. grid-template-columns: 1fr 1fr;
  312. grid-column-gap: 8px;
  313. }
  314. h2{
  315. margin: 15px 0;
  316. padding-bottom: 12px;
  317. position: relative;
  318. display: block;
  319. width: 100%;
  320. }
  321. h2::after {
  322. content: '';
  323. position: absolute;
  324. bottom: 0;
  325. left: 0;
  326. width: 100%;
  327. height: 1px;
  328. background: currentColor;
  329. }
  330. p{
  331. margin: 10px 0;
  332. }
  333. table{
  334. border: 1px solid white;
  335. width: 100%;
  336. border-collapse: collapse;
  337. margin: 20px 0;
  338. }
  339. caption{
  340. padding: 15px;
  341. border: 1px solid white;
  342. display: table-caption;
  343. text-align: center;
  344. }
  345. td{
  346. border: 1px solid white;
  347. padding: 10px;
  348. }
  349. th{
  350. border: 1px solid white;
  351. padding: 10px;
  352. }
  353. /* Стили для десктопа */
  354. /* .header__menu {
  355. display: block;
  356. } */
  357. .header__mobile-menu {
  358. display: none;
  359. cursor: pointer;
  360. position: relative;
  361. width: 24px;
  362. height: 24px;
  363. margin-left: 15px;
  364. }
  365. .burger, .burger:before, .burger:after {
  366. content: '';
  367. position: absolute;
  368. background-color: #333;
  369. width: 100%;
  370. height: 3px;
  371. transition: all 0.3s ease;
  372. }
  373. .burger {
  374. top: 50%;
  375. transform: translateY(-50%);
  376. }
  377. .burger:before {
  378. top: -8px;
  379. }
  380. .burger:after {
  381. top: 8px;
  382. }
  383. .burger.active {
  384. background-color: transparent;
  385. }
  386. .burger.active:before {
  387. top: 0;
  388. transform: rotate(45deg);
  389. }
  390. .burger.active:after {
  391. top: 0;
  392. transform: rotate(-45deg);
  393. }
  394. /* Скрываем меню на мобильных устройствах */
  395. @media only screen and (max-width: 768px) {
  396. .header__menu {
  397. display: none;
  398. position: absolute;
  399. top: 70px;
  400. left: 0;
  401. width: 100%;
  402. background: #fff;
  403. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  404. transition: all 0.3s ease;
  405. }
  406. .footer__content{
  407. text-align: center;
  408. gap: 20px!important;
  409. }
  410. .header__menu.active {
  411. display: block;
  412. }
  413. .header__mobile-menu {
  414. display: block;
  415. }
  416. .main__banner img{
  417. max-width: 100%;
  418. object-fit: contain;
  419. height: auto;
  420. }
  421. .accordion-container {
  422. grid-template-columns: 1fr;
  423. }
  424. }
  425. .header__menu-list{
  426. margin: initial;
  427. }
  428. .main img{
  429. max-width: 100%;
  430. height: auto;
  431. }
  432. .footer__content{
  433. gap: 40px;
  434. }
  435. .main{
  436. overflow-x: hidden;
  437. }
  438. .secondary__text{
  439. max-width: 1310px;
  440. width: 100%;
  441. margin-bottom: 30px;
  442. }
  443. .table-wrap{
  444. overflow-x: auto;
  445. }
  446. .casinos__item{
  447. display: flex;
  448. align-items: center;
  449. justify-content: space-between;
  450. width: 100%;
  451. gap: 24px;
  452. padding: 24px 32px;
  453. border-radius: 8px;
  454. background: var(--Main-White, #FFF);
  455. box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 8px 16px rgba(0, 0, 0, 0.08);
  456. }
  457. .casinos__info{
  458. display: flex;
  459. align-items: center;
  460. gap: 24px;
  461. width: 40%;
  462. }
  463. .casinos__image img{
  464. display: flex;
  465. width: 140px;
  466. height: 92px;
  467. flex-direction: column;
  468. align-items: flex-start;
  469. gap: 10px;
  470. border-radius: 8px;
  471. object-fit: cover;
  472. }
  473. .casinos__image{
  474. overflow: hidden;
  475. }
  476. .casinos__wrap{
  477. display: flex;
  478. flex-direction: column;
  479. gap: 16px;
  480. margin: 20px auto;
  481. }
  482. .casinos__button button{
  483. display: flex;
  484. width: 200px;
  485. height: 52px;
  486. padding: 18px 32px;
  487. justify-content: center;
  488. align-items: center;
  489. gap: 10px;
  490. border-radius: 4px;
  491. border: none;
  492. color: var(--Main-White, #FFF);
  493. /* Mountserrat/Bold/18 */
  494. font-size: 18px;
  495. font-style: normal;
  496. font-weight: 700;
  497. line-height: normal;
  498. cursor: pointer;
  499. transition: filter 0.3s ease;
  500. }
  501. .casinos__button button:hover{
  502. filter: brightness(0.85);
  503. }
  504. .casinos__bonus{
  505. font-size: 24px;
  506. font-style: normal;
  507. font-weight: 700;
  508. line-height: 32px; /* 133.333% */
  509. width: 40%;
  510. }
  511. .casinos__number{
  512. border-radius: 4px;
  513. display: flex;
  514. width: 40px;
  515. height: 40px;
  516. flex-direction: column;
  517. justify-content: center;
  518. align-items: center;
  519. gap: 10px;
  520. position: relative;
  521. }
  522. /* .top-casino .casinos__number::after {
  523. content: '⭐';
  524. position: absolute;
  525. top: -8px;
  526. right: -4px;
  527. font-size: 16px;
  528. } */
  529. /* Топ-3 казино - золотой ободок */
  530. .casinos__item.top-casino {
  531. border: 2px solid #FFD700;
  532. box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.4), 0px 8px 20px rgba(255, 215, 0, 0.25);
  533. }
  534. .casinos__title{
  535. color: var(--Main-Back, #000);
  536. font-size: 20px;
  537. font-style: normal;
  538. font-weight: 900;
  539. line-height: normal;
  540. }
  541. .casinos__rait{
  542. display: flex;
  543. gap: 8px;
  544. margin-top: 12px;
  545. align-items: center;
  546. }
  547. .casinos__rait img {
  548. filter: brightness(0) saturate(100%) invert(76%) sepia(94%) saturate(1615%) hue-rotate(360deg) brightness(105%) contrast(103%);
  549. }
  550. .casinos__rating-box {
  551. display: inline-flex;
  552. align-items: center;
  553. justify-content: center;
  554. padding: 4px 10px; font-weight: 700;
  555. line-height: 1;
  556. white-space: nowrap;
  557. border-radius: 8px;
  558. border: 1px solid #EFF2F5;
  559. background: #F5F8FB;
  560. color: rgba(0, 0, 0, 0.40);
  561. font-size: 12px;
  562. font-style: normal;
  563. font-weight: 700;
  564. line-height: normal;
  565. }
  566. .casinos__rating-value {
  567. color: var(--Main-Back, #000);
  568. font-size: 16px;
  569. font-style: normal;
  570. font-weight: 700;
  571. line-height: normal;
  572. }
  573. @media only screen and (max-width: 768px) {
  574. .casinos__item{
  575. flex-direction: column;
  576. padding: 16px;
  577. position: relative;
  578. }
  579. .casinos__info{
  580. width: 100%;
  581. align-items: flex-start;
  582. }
  583. .casinos__bonus{
  584. width: 100%;
  585. text-align: center;
  586. font-size: 16px;
  587. font-style: normal;
  588. font-weight: 700;
  589. line-height: 20px; /* 125% */
  590. }
  591. .casinos__rait{
  592. justify-content: center;
  593. }
  594. .casinos{
  595. padding: 0 30px;
  596. }
  597. .casinos__number{
  598. position: absolute;
  599. width: 32px;
  600. height: 32px;
  601. top: 6px;
  602. left: 6px;
  603. }
  604. /* .top-casino .casinos__number::after {
  605. font-size: 14px;
  606. top: -3px;
  607. right: -3px;
  608. } */
  609. .casinos__image img {
  610. width: 100px;
  611. height: 64px;
  612. }
  613. .casinos__title{
  614. color: var(--Main-Back, #000);
  615. font-size: 18px;
  616. font-style: normal;
  617. font-weight: 900;
  618. line-height: normal;
  619. }
  620. .casinos__rait{
  621. justify-content: flex-start;
  622. }
  623. .casinos__button {
  624. width: 100%;
  625. }
  626. .casinos__button a{
  627. width: 100%;
  628. }
  629. .casinos__button button{
  630. width: 100%;
  631. font-size: 18px;
  632. }
  633. .form-wrap{
  634. flex-direction: column;
  635. margin: 0 0 0 0!important;
  636. gap: 5px!important;
  637. }
  638. .form-wrap .main__text{
  639. margin: 0;
  640. }
  641. .contact-form{
  642. max-width: 80%!important;
  643. margin:20px auto;
  644. }
  645. }
  646. .redirect-js{
  647. cursor: pointer;
  648. }
  649. .banner__info{
  650. display: flex;
  651. flex-direction: column;
  652. margin-top: 70px;
  653. }
  654. .secondary__text{
  655. margin: 30px 0;
  656. }
  657. .container.banner__info {
  658. flex-direction: column;
  659. margin-top: 70px;
  660. }
  661. .author{
  662. display: flex;
  663. gap: 10px;
  664. align-items: center;
  665. margin: 15px 0 0 0;
  666. width: 100%;
  667. }
  668. .author img{
  669. height: 60px;
  670. width: 60px;
  671. border-radius: 50%;
  672. }
  673. .author__date{
  674. opacity: 0.6;
  675. font-style: italic;
  676. }
  677. .author__name{
  678. font-style: italic;
  679. }
  680. .author__info{
  681. display: flex;
  682. flex-direction: column;
  683. gap: 5px;
  684. }
  685. .author img img{
  686. object-fit: cover;
  687. }
  688. .form-wrap{
  689. display: flex;
  690. gap: 30px;
  691. margin: 25px 0;
  692. }
  693. .contact-form {
  694. background: #fff;
  695. padding: 20px 30px;
  696. border-radius: 8px;
  697. box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  698. width: 100%;
  699. max-width: 400px;
  700. }
  701. .contact-form h2 {
  702. margin-bottom: 15px;
  703. color: #333;
  704. font-size: 1.5rem;
  705. text-align: center;
  706. }
  707. .contact-form label {
  708. display: block;
  709. margin-bottom: 5px;
  710. color: #555;
  711. }
  712. .contact-form input,
  713. .contact-form textarea {
  714. width: 100%;
  715. padding: 10px;
  716. margin-bottom: 15px;
  717. border: 1px solid #ccc;
  718. border-radius: 5px;
  719. font-size: 1rem;
  720. box-sizing: border-box;
  721. }
  722. .contact-form textarea {
  723. resize: vertical;
  724. height: 100px;
  725. }
  726. .contact-form button {
  727. background-color: #4CAF50;
  728. color: #fff;
  729. border: none;
  730. padding: 10px 20px;
  731. border-radius: 5px;
  732. cursor: pointer;
  733. font-size: 1rem;
  734. transition: background 0.3s ease;
  735. width: 100%;
  736. }
  737. .contact-form button:hover {
  738. background-color: #45a049;
  739. }